Skip to content

Instantly share code, notes, and snippets.

@rcmachado
Created January 25, 2013 19:22
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 rcmachado/4637060 to your computer and use it in GitHub Desktop.
Save rcmachado/4637060 to your computer and use it in GitHub Desktop.
Custom git commands
git ls-files -z |
xargs -0 -n1 -E'\n' -J {} git blame --date short -wCMcp '{}' |
perl -pe 's/^.*?\((.*?) +\d{4}-\d{2}-\d{2} +\d+\).*/\1/' |
sort |
uniq -c |
sort -rn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment