So here's the situation:
There's a big task with over 30 commits that I'm reviewing. Already went through one cycle of review and fixes and now I'd like to review the fixes only. The Problems is, meanwhile around 200-something commits were merged from master to the feature branch:
code review
↓
B---D---F---H---J---L---M---N---O feature
↗ ↗
--A---C---E---G---I---K master
How do I go about diffing the changes of the H
to O
range to F
, while ignoring what came in from the merge?
Rebasing is troublesome due to many conflicts.