You have not concluded your merge (MERGE_HEAD exists)

You have not concluded your merge (MERGE_HEAD exists)

引发以上问题的因为是,合并A分支的时候,发现出现大量冲突并,拉错了分支,把所有的代码放弃更改后重新拉取时,git pull 出现的

解决办法:中止合并

git merge --abort

再重新拉取 git pull正常


原文地址:https://www.cnblogs.com/FACESCORE/p/13986504.html