Git: List changed file names only between two commits?


Occasionally you are in the situation that you need to know which files were changed from a commit to commit either to check an issue or to deploy these changes.

git diff –name-only SHA1 SHA2

 

git diff –name-only HEAD~10 HEAD~5

 

Source

Leave a comment