10

でコミットをスカッシュできず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

おそらく、あなたはgit rebase以前に使用したことがあり、それを完了していません。確認するには、__git_ps1rebaseという単語が表示されるかどうかを入力して確認します。これを解決するには、で以前のリベースを中止し、必要なリベースをgit rebase --abort適用する必要があります。

于 2013-01-25T03:25:04.857 に答える