Reputation: 997
i have these errors while pulling in Git
error: You have not concluded your merge (MERGE_HEAD exists). hint: Please, commit your changes before merging. fatal: Exiting because of unfinished merge.
amd my name in the git command line appears like that (master|MER GING)
Upvotes: 2
Views: 17616
Reputation: 3862
Undo merge and pull again To undo:
git reset --merge
Then resolve the conflicts and make sure to add and commit the merge
Upvotes: 12