Skip to content

Instantly share code, notes, and snippets.

@alfie-max
Forked from amitchhajer/Count Code lines
Created August 4, 2016 10:30
Show Gist options
  • Save alfie-max/ac6f7a893d1da5fb359474e3d6f4032a to your computer and use it in GitHub Desktop.
Save alfie-max/ac6f7a893d1da5fb359474e3d6f4032a to your computer and use it in GitHub Desktop.
Count number of code lines in git repository per user
git ls-files -z | xargs -0n1 git blame -w | perl -n -e '/^.*\((.*?)\s*[\d]{4}/; print $1,"\n"' | sort -f | uniq -c | sort -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment