Last Updated: February 25, 2016
·
622
· clawfire

Get the list of files diff between 2 branches

If you wanna quickly get a list of all files who differ between two branches you can use this command. It return a nice list of file with count of chars differs and if it's + or - . Also reference binary file like pictures.

$ git diff --stat --color master..branchName

you can also flip master and branchName to get what is diff if you merge the other way.