Created
July 18, 2016 13:28
-
-
Save marcusshepp/efe9a3d5ec2faaacd7cabc175f4c90e5 to your computer and use it in GitHub Desktop.
list changed files between two commits
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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