问题:git 提交文件,出现冲突
You have not concluded your merge (MERGE_HEAD exists).
Please, commit your changes before you can merge.
问题原因:
在提交文件之前,没有拉取最新代码,修改了同一个文件,出现冲突。
且在下次拉取之前没有解决冲突,因此再次pull代码,出现上诉问题提示。
解决:
1.撤销之前的merge文件,重新pull代码
撤销merge命令:
git merge --abort
git reset --merge