Alexander Usov <a.s.usov@xxxxxxxxx> writes: > Consider the following history: > > master: A---B---D---F > \ \ > branch: .-C--E--G > > ... > - "git diff D..branch" would do a trick, but I'm not sure how to > correctly determine > D (if I'm to write a script). D is the merge-base between F and G. So "git diff $(git merge-base F G) G" would compare D and G. Modern git lets you write it as "git diff F...G" as this is a fairly useful short-hand. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html