2

コミットを無効にするためにリベースしようとしていますが、競合が発生します:

<username>:~/path/to/director$git rebase -i HEAD~6
error: could not apply 0111a7a... <commit message>

When you have resolved this problem, run "git rebase --continue".
If you prefer to skip this patch, run "git rebase --skip" instead.
To check out the original branch and stop rebasing, run "git rebase --abort".
Could not apply 0111a7acsadd9a9d98a9003a560a390a50a22afa3af546f42101... <full commit message>

次に、競合を見つけるために次のことを行います。

find . -name "*.py" -exec egrep ".*HEAD.*" {} \;

Python ファイルのみを変更したことがわかっているので、*.pyグロビングを使用します。しかし、結果は表示されません!問題が何であるかを正確に見つける方法はありますか?

git status、およびgit diff両方ともクリーンです。

4

2 に答える 2