10

我无法使用 squash 提交git rebase -i command,收到以下错误消息。

error: could not apply 3ad5c7b... 

When you have resolved this problem run "git rebase --continue".
If you would prefer to skip this patch, instead run "git rebase --skip".
To check out the original branch and stop rebasing run "git rebase --abort".

错误是什么以及如何解决?

4

2 回答 2

6

Git 无法自动合并。尝试git mergetool解决冲突,然后继续你的变基git rebase --continue

于 2013-01-25T12:58:09.573 回答
0

可能您以前使用过 agit rebase并没有完成它。要验证它,请键入__git_ps1并验证是否出现 rebase 一词。要解决此问题,您需要中止先前的变基git rebase --abort并应用所需的变基。

于 2013-01-25T03:25:04.857 回答