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

============================================================
博文原创,转载请声明出处
电子咖啡-专注于移动互联网
============================================================

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


1) Undo the merge and pull again.

To undo a merge:

git merge --abort [Since git version 1.7.4]

git reset --merge [prior git versions]

2) Resolve the conflict.

3) Don’t forget to add and commit the merge.

4) git pull now should work fine.


你可能感兴趣的:(项目*版本*管理*服务器)