I have feature/bug-fix branch (say topic
) with a bunch of commits and want to present them to my colleagues before merging them into master
. I can manually find the common ancestor of my branch and the master branch and compare that to its tip:
$ git diff d0a2eaf..03a025f
Is there a more elegant way to do this?