We have commits 1->2->3->4->5
Do see the diff since (and including) commit 3 we can do git diff 3~1
.
This will show the collective diffs to the source tree from diff 3 including 3/4/5.
Question is - how can we see the diffs resulting from just 3 and 5 but not 4?
Commit 4 is a commit to a different part of the source. 3 and 5 are related and we only want to see the diff resulting from those commits.