Git: show all files changed between two commits
March 21, 2015 21:22:57 Last update: March 21, 2015 21:22:57
To show all files changed between two commits: "
Example:
Alternatively:
Omit
git diff --name-only <SHA1> <SHA2>
".
Example:
$ git diff --name-only ea2a66 299279c
Alternatively:
$ git show --name-only ea2a66
Omit
--name-only
to see the diff.