How to conclude your merge of a file?

后端 未结 6 1503
天命终不由人
天命终不由人 2021-01-29 23:34

After I merged a file in Git I tried to pull the repository but error came up:

You have not concluded your merge. (MERGE_HEAD exists)

<
6条回答
  •  孤街浪徒
    2021-01-29 23:44

    Check status (git status) of your repository. Every unmerged file (after you resolve conficts by yourself) should be added (git add), and if there is no unmerged file you should git commit

提交回复
热议问题