How to view changes from only a particular branch
git log master..
, assuming your branch was based off of master. If based off of something else, use that branch name (ie, git log production..
)
Courtesy of http://stackoverflow.com/a/4649377/814576
Written on March 15, 2016 by evanbrodie