Given two (or more) commits, I want to find the oldest merge which joins them. Something like the opposite of git merge-base
(which finds the youngest common ancestors). Notice that the commit I’m looking for will be a younger descendant of the starting commits.
In other words: I want to investigate the merge commit which merged two given commits (where changes to the same file happened).