How to conclude your merge of a file?

后端 未结 6 1561
天命终不由人
天命终不由人 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-30 00:05

    The easiest solution I found for this:

    git commit -m "fixing merge conflicts"
    git push
    

提交回复
热议问题