码迷,mamicode.com
首页 > 其他好文 > 详细

[Git:commit错误] Fatal: cannot do a partial commit during a merge

时间:2019-10-31 00:54:45      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:file   one   fail   提交   during   版本   led   tps   出现   

:本文出自博主:chloneda

问题场景

今天进行Spring Boot版本升级,解决冲突后进行代码文件提交时出现这个错误。

上午11:56 Commit failed with error
        0 files committed, 5 files failed to commit: 升级Spring Boot版本,解决代码冲突。
        cannot do a partial commit during a merge.

其中最后一行的意思是不能部分提交代码。这是因为git提交代码时有部分代码没有做好提交的准备。

解决方法

  1. 全部提交。
git commit -a
  1. 部分提交,可以通过添加 -i 参数。
git commit file -i -m "merge"

然后解决一下冲突就可以提交了!

[Git:commit错误] Fatal: cannot do a partial commit during a merge

标签:file   one   fail   提交   during   版本   led   tps   出现   

原文地址:https://www.cnblogs.com/chloneda/p/git-commit-apart.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!