Skip to content

Instantly share code, notes, and snippets.

@longtth
Created May 2, 2023 16:57
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 longtth/0c0fa94a101efe795bbc74079c637844 to your computer and use it in GitHub Desktop.
Save longtth/0c0fa94a101efe795bbc74079c637844 to your computer and use it in GitHub Desktop.
count line of code per user
git ls-files | while read f; do git blame --line-porcelain $f | grep '^author '; done | sort -f | uniq -ic | sort -n
# this doesn't include xargs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment