You need to see the list of modified files in your branch compared to master ?
This is for you !
In your ~/.gitconfig
file add the following in the [alias]
section:
1
changedfiles = "!git diff --name-only master `git rev-parse --abbrev-ref HEAD`"
Now executing git changedfiles
will show your them :)