Git: You have not concluded your merge (MERGE_HEAD exists) 解决办法

by Web全栈工程师 on 2016 年 03 月 04 日

使用git pull origin master, 出现以下错误:

You have not concluded your merge (MERGE_HEAD exists).
Please, commit your changes before you can merge.

造成这个的原因可能是之前pull的代码,没有自动合并成功。

解决办法:

  1. 保留你本地的修改
    git merge --abort
    git reset --merge
    	
  2. 合并之后,提交本地合并
  3. git pull 线上最新版本

Comments on this entry are closed.

Previous post:

Next post: