Skip to content

Instantly share code, notes, and snippets.

@marcusshepp
Created July 18, 2016 13:28
Show Gist options
  • Save marcusshepp/efe9a3d5ec2faaacd7cabc175f4c90e5 to your computer and use it in GitHub Desktop.
Save marcusshepp/efe9a3d5ec2faaacd7cabc175f4c90e5 to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment