Created
March 13, 2015 11:29
-
-
Save toluolubajo/44dbbbf8e61fefb98140 to your computer and use it in GitHub Desktop.
Get the list of all changed files between two git 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
| git log --pretty="%h" 63e2e9..2acf29d | awk '{ for(i=1; i <= NF; i++) {print $i } }' | xargs -n 1 git diff-tree --no-commit-id --name-only -r | sort | uniq |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment