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

前端 未结 18 1504
长情又很酷
长情又很酷 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 found that adding "-i" to the commit command fixes this problem for me. The -i basically tells it to stage additional files before committing. That is:

    git commit -i myfile.php
    

提交回复
热议问题