Elijah Newren <newren@xxxxxxxxx> writes: >> There _may_ need a tweak of the matching algorithm to allow the >> "same" merge on both sides to match, even if they diverge a lot, >> though. A range-diff that pairs a merge in the previous iteration >> with a single patch in the updated iteration may be hard to read. > > Sounds like you are arguing that there is an angle/usecase from which > `first-parent` makes sense, namely the viewpoint that "a merge is > merely bringing in lots of changes into the mainline as a single unit" > as you put it. What was surprising to me, though, is that it's a > completely different usecase than the one that was brought up in the > commit message for this feature, namely "so-called 'evil merges' are > sometimes necessary and need to be reviewed too". What I had in mind when I wrote the example you are responding to is based on what sometimes happens while I make repeated merges (and as you may know, I make lots of them). In the first attempt I miss the fact that I need semantic adjustments and then in the second attempt I know what additional changes are necessary in the same merge (i.e. merging exactly the same iteration of the same topic). If you run the first-parent range-diff between one iteration of 'seen' and another, the "additional changes" I would make in the second attempt would be the only thing that will appear in the output, showing the "evil merge". There can also be updates in the topic itself when I rebuild 'seen', in addition to merge-fixes to adjust for semantic conflicts. Such a change would also appear in the first-parent view. If you used other views, like dense-combined or remerge-diff, these updates in the topic itself may be hidden, as these other views are specifically designed to highlight conflict resolutions and evil merges by discarding mechanically resolvable changes. So it all depends on what you are looking for and what you are deliberately excluding from the lower level of diff generation when you prepare your range-diff, which is a "diff of diff". Giving an impression that first-parent is the most useful may risk misleading readers in that sense.