git pull的时候报错

错误信息:You have not concluded your merge (MERGE_HEAD exists). Please, commit your changes before you can merge.

原因:上一次pull的代码有冲突自动合并失败,在下一次pull之前你没有很好的解决这个冲突

方法:

1:撤销这次合并
git merge --abort
git reset --merge```
2、解决冲突
3、`git add`和`git commit`
4、 这时候`git pull`应该就可以使用了

你可能感兴趣的:(git)