标签:分享 div 本地 某个版本 origin push ref delete .com
1 // 版本回退 2 3 //1. 回退上一次版本 4 git reset --hard HEAD^ 5 6 //2.回退到某个版本 7 git log//找到commit号 8 git reset --hard commit号 9 10 //版本找回 11 git reflog
然后 git reset –hard cd3bf74 就可以回退到该版本
// 删除本地远程分支 git branch -d 分支名 git push origin --delete 分支名
标签:分享 div 本地 某个版本 origin push ref delete .com
原文地址:https://www.cnblogs.com/luguiqing/p/10316604.html