菜鸟笔记
提升您的技术认知

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

造成这个问题的原因是:
没有拉去代码。
解决办法:保留本地的更改,中止合并->重新合并->重新拉取

git merge --abort   //中止合并
git reset --merge   //撤销合并
git pull            //拉去代码