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

来源:互联网 发布:淘宝积分怎么查手机 编辑:程序博客网 时间:2024/05/16 02:03

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

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.


0 0