当前位置:   article > 正文

Git基础操作:git merge之后如何回滚_git merge 回滚

git merge 回滚

git merge这个命令大家都会用了,但是有时候执行完merge发现一堆冲突后悔了,这个时候该怎么办呢?

mac@localhost$ git merge master 
Auto-merging javademo/src/main/java/a/b/c/Hello.java
CONFLICT (content): Merge conflict in javademo/src/main/java/a/b/c/Hello.java
...
Automatic merge failed; fix conflicts and then commit the result.
  • 1
  • 2
  • 3
  • 4
  • 5

case1: git merge之后未git add,执行命令git merge --abort

mac@localhost$ git merge --abort
mac@localhost$ git st
On branch feature/abc
Your branch is up to date with 'origin/feature/abc'.
  • 1
  • 2
  • 3
  • 4

case2:git merge之后并且已执行git add

其实也很简单,先用 git reflog /git log指令显示历史的操作,再用 'git reset --hard commitid’就可以回退到操作之前的状态了

示例
 git reset --hard d03c6bfb
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/638456
推荐阅读
相关标签
  

闽ICP备14008679号