Comparing Branches
List the Commits between the branches
git log master..bugfix-signup-form
Show the changes between the branches
git diff master..bugfix-signup-form
git diff bugfix-signup-form
Show the files that are affected between the branches
git diff --name-only bugfix-signup-form
git diff --name-status bugfix-signup-form