Git error on commit after merge - fatal: cannot do a partial commit during a merge

前端 未结 18 1489
长情又很酷
长情又很酷 2020-12-07 07:15

I ran a git pull that ended in a conflict. I resolved the conflict and everything is fine now (I used mergetool also).

When I commit the resolved file

18条回答
  •  感情败类
    2020-12-07 07:33

    I got this when I forgot the -m in my git commit when resolving a git merge conflict.

    git commit "commit message"
    

    should be

    git commit -m "commit message"
    

提交回复
热议问题