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 copy paste in body ):
git am bad.patch
Gitは次のように述べました。
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
エラーが発生しました。
OK、ディレクトリを削除する必要があることがわかりました.git/rebase-apply
。それはその後動作します(または、少なくとも別のエラーを出して、電子メールが再び間違っていると言います)。エラーが実際に何を意味するのか、なぜエラーが発生したのか、まだわかりません。
編集:以下のコメントが示唆するように、git am --abort
または git rebase --abort
は問題を修正するより良い方法かもしれませんが、私はそれをテストしていません。