git

Git changed files

Posted by ZedTuX 0n R00t on February 12, 2015

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 :)