I am attempting to merge master into a dev branch with a lot of changes and ran into some merge conflicts.
How can I get a diff of what changed in the file since the last shared commit in my dev branch using the git console commands?
So lets say my branches have the following last 5 commits:
master:
abb
abc
abd
abe
abf
dev:
abb
cda
abc
abd
cdb (merge master to dev at abd)
cdc
And I would now like the equivalent of:
git diff abd..abf filename.ext
But, because I am in the middle of a merge with conflicts, i'm not sure how to find those two commit hashes without looking through the log's of both master and dev.