我正试图从一个小分行 做一个合并的壁球 进入主人。
stefanos-imac:trunk borini$ git merge --squash devel
CONFLICT (content): Merge conflict in test1
warning: inexact rename detection was skipped due to too many files.
warning: you may want to set your merge.renamelimit variable to at least 2224 and retry the command.
Squash commit -- not updating HEAD
Automatic merge failed; fix conflicts and then commit the result.
足够公平了
stefanos-imac:trunk borini$ git config merge.renameLimit 999999
然后,我试着去掉合并,再用更高的限制重做它
stefanos-imac:trunk borini$ git merge --abort
fatal: There is no merge to abort (MERGE_HEAD missing).
好吧,所以也许我必须照上面说的做 重新调用合并司令部
stefanos-imac:trunk borini$ git merge --squash devel
fatal: merge is not possible because you have unmerged files.
Please, fix them up in the work tree, and then use git add/rm <file> as
appropriate to mark resolution and make a commit, or use git commit -a .
呵呵git,为什么你这样一个git?
更重要的是,有人知道如何摆脱这种情况吗?