Skip to content

Instantly share code, notes, and snippets.

@Siedrix
Created February 14, 2013 17:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Siedrix/4954507 to your computer and use it in GitHub Desktop.
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
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