Is there an abbreviation for the last commit common to two branches? For example, if I have a master, then topic1 is separated from the master, and they both continue
master:
a------b------c------d
\
topic1: r------s------t
Is there a way to define say b?
For example, if there was such a thing as master # topic1 (the same as topic1 # master), which meant "the very last fixer shared by both the master and the theme."
I would like to be able to:
$ git checkout topic1
$ git diff master
I know what I can do:
git diff master..topic
but i don't need commits cand d.
source
share