I have two branches coming from commit a
:
a - b - c
\ d - e
What I want to see is a diff between the changes introduced in c
and e
. I can easily view the differences between e
and c
themselves, but that's not what I want, because that diff includes changes introduced in b
and d
, and those two commits are different from each other. Abstractly I guess what I want would be something like
diff(diff(b, c), diff(d, e))
Is there a good way to do this? The edits introduced in c
and e
are only different by maybe 50 lines, so it's not that many, the problem is that this 50 line signal is getting lost in the ~1000 line noise from the difference between b
and d
. Thanks for the help!