marcusshepp
7/18/2016 - 1:28 PM

list changed files between two commits

list changed files between two commits

# between two commit sha's
git diff --name-only SHA1 SHA2

# see the differences between the tenth latest commit and the fifth latest (or so).
git diff --name-only HEAD~10 HEAD~5