How To Get a List of Changed Files in git

Published Date Author: , Posted December 19th, 2016 at 1:59:00pm

To get just a list of files changed since the last commit:
git diff --name-only

To create a global alias called ‘git changed’:
git config --global alias.changed 'diff --name-only'

No comments as yet.

Leave Your Comment  Leave a comment

All fields marked with "*" are required.