How to do diff between branches to get what the Merge diff will look like
consider this graph
* master
|\
| * b1
|\
| * b2
if im on b2, and the person on b1 beat me and merged into master,
if i do
project>b2 $ git diff origin/master
the diff would include b1, which would not be included in the PR, how do I reproduce this in command line.