1.更新远程分支
git remote update origin --prune
2.取消合并
git merge --abort
3.回滚代码到指定版本
git reset --hard 哈希值(commit号码)前六位
git push -f(强制推送到远程仓库(无操作历史记录)
1.更新远程分支
git remote update origin --prune
2.取消合并
git merge --abort
3.回滚代码到指定版本
git reset --hard 哈希值(commit号码)前六位
git push -f(强制推送到远程仓库(无操作历史记录)