Created
February 14, 2013 17:33
-
-
Save Siedrix/4954507 to your computer and use it in GitHub Desktop.
Find what files are the ones that you have modify more on a git proyect
This file contains 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" --author="Siedrix" --no-merges | while read commit_hash; do git show --oneline --name-only $commit_hash | tail -n+2; done | sort | uniq -c | sort -r > files.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment