
Another one of my favorite commands I use often. I usually do this before I run rubocop or when I push to github before I do a pull request.
0 1 2 |
git diff master --name-only |
In my .zshrc I have an alias:
0 1 2 |
alias gdfiles="git diff master --name-only" |