Created
June 19, 2013 08:18
-
-
Save fabriceleal/5812580 to your computer and use it in GitHub Desktop.
git compare branches
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://stackoverflow.com/questions/9834689/compare-two-branches-in-git | |
# https://www.kernel.org/pub/software/scm/git/docs/git-diff.html | |
# Normal diff | |
git diff a_branch..master | |
# Only filenames | |
git diff --numstat a_branch..master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment