1. ホーム
  2. git

[解決済み] Git エラー: 以前のリベースディレクトリ .git/rebase-apply はまだ存在するが、mbox が与えられる

2023-06-16 22:01:54

質問

私はあるパッチを適用しようとしています。 http://www.winehq.org/pipermail/wine-devel/2014-May/104356.html . 私はそれをテキストエディタにコピーし、次のように保存しました。 my.patch として保存しました (電子メールを修正する必要がありました。難読化されていました)。

Gitで適用しようとしたのですが、このようなエラーが出てしまいます。

sashoalm@sashoalm-VirtualBox:~/Desktop/wine-git$ git am --signoff <my.patch
previous rebase directory /home/sashoalm/Desktop/wine-git/.git/rebase-apply still exists but mbox given.

この不可解なエラーメッセージからは、何が間違っているのか、何をすれば動くようになるのか、まったくわかりません。このエラーは何を意味しているのでしょうか?そして、どのようにそれを修正すればよいのでしょうか?

どのように解決するのですか?

git am --abort

はうまくいったが git rebase --abort は動作しませんでした。

何が起こったのか。パッチを適用しようとしましたが、パッチが破損していました (おそらく Gmail の本文へのコピー ペースト ):

git am bad.patch

そして、ギットは言った。

Applying: python: fix Linetable case to LineTable in docstrings and comments
fatal: corrupt patch at line 56
Patch failed at 0001 python: fix Linetable case to LineTable in docstrings and comments
The copy of the patch that failed is found in:
   /home/ciro/git/binutils-gdb/src/.git/rebase-apply/patch
When you have resolved this problem, run "git am --continue".
If you prefer to skip this patch, run "git am --skip" instead.
To restore the original branch and stop patching, run "git am --abort".

gitがどのように解決策を出しているかに注目してください。 To restore the original branch and stop patching, run "git am --abort".

それから私は明らかにそのメッセージを無視して、すぐに修正版を試しました。

git am good.patch

を実行すると、エラーが発生しました。