Git trick for code review
Dealing with a specific branch outside of the master that you want to review? One with a lot of work merged in from various progress? The trick is to look at only those commit logs that distinguish it from the branch you want to merge it in to.
git log oldbranch ^newbranch –no-merges
Will let you see just the logs that are on oldbranch that aren’t on newbranch. Nifty!