Blog Archive for March 7, 2018

Git Diff Branch to Master

March 7, 2018

Today, I wanted to see what changes there were on my git branch, as compared to master. Thankfully there's a way to do this within git:

$ git diff master...branch

References