Skip to content

Instantly share code, notes, and snippets.

@arthurk
Created March 20, 2010 22:19
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 arthurk/338948 to your computer and use it in GitHub Desktop.
Save arthurk/338948 to your computer and use it in GitHub Desktop.
# sort committers by how many lines they have committed to a git repo
find . -name '*.py' -exec git blame -p {} \; | awk '/committer / { print $2 | "sort | uniq -c"}' | sort -r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment