GIT error: You have not concluded your merge (MERGE_HEAD exists)

Posted 福州司马懿

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GIT error: You have not concluded your merge (MERGE_HEAD exists)相关的知识,希望对你有一定的参考价值。

使用git pull 指令时报错:error: You have not concluded your merge (MERGE_HEAD exists)

意思是:

  1. 你还有尚未合并的 MERGE_HEAD 存在
  2. 提示:请在合并前提交你的修改
  3. 由于未完成合并导致退出

解决方案有两种

方案一:先执行commit,然后手动合并,然后再push推送到远端

方案二:由于我的冲突文件比较多,大多数bug也被其他员工修复了。因此我选择直接放弃本次修改,然后重新pull代码,手动修改冲突代码,合并上传

git merge --abort   // 终止合并
git reset --merge   // 重置合并
git pull			 // 重新拉取代码

建议:使用git pull的时候,本地不要有修改的代码且未提交,如果修改的代码就是不需要提交的代码,可以使用git stash暂存起来,等执行完git操作且没有问题后,使用git stash apply还原到本地即可。

以上是关于GIT error: You have not concluded your merge (MERGE_HEAD exists)的主要内容,如果未能解决你的问题,请参考以下文章

GIT error: You have not concluded your merge (MERGE_HEAD exists)

git:Git fetch和git pull的区别, 解决Git报错:error: You have not concluded your merge (MERGE_HEAD exists).(代码片

Git冲突:You have not concluded your merge

ERROR: Cannot find command ‘git‘ - do you have ‘git‘ installed and in your PATH

git pull 报错 You have not concluded your merge (MERGE_HEAD exists).

Git异常 #Git提交代码时提示:Committing is not possible because you have unmerged files.