Reputation: 1335
I am now in the middle of branch rebase (conflicts stage) and I want to skip some commits using git rebase --skip. However I am wondering how to check what commit is actually being applied to the workspace (the conflicting one). Is there a simple way to do this? Google did not help this time.
Upvotes: 2
Views: 142
Reputation: 391
Look at the file .git/rebase-apply/original-commit
which should contains the hash of the commit which generates the conflict.
Upvotes: 4