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