Skip to content

Instantly share code, notes, and snippets.

@rittme
Created June 14, 2021 08:10
Show Gist options
  • Save rittme/72c566b6aa1af617f496763c78fe8964 to your computer and use it in GitHub Desktop.
Save rittme/72c566b6aa1af617f496763c78fe8964 to your computer and use it in GitHub Desktop.
show stats of how many lines were changed by author
git ls-tree -r -z --name-only HEAD -- $1 | sed 's/^/.\//' | xargs -0 -n1 git blame \
--line-porcelain HEAD |grep -ae "^author "|sort|uniq -c|sort -nr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment