Skip to content

Instantly share code, notes, and snippets.

@lirongfei123
Created March 2, 2019 13:13
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 lirongfei123/df3422fffa697b6ce4a1e23ff48bad9d to your computer and use it in GitHub Desktop.
Save lirongfei123/df3422fffa697b6ce4a1e23ff48bad9d to your computer and use it in GitHub Desktop.
git #git

git log --format='%aN' | sort -u | while read name; do echo -en "$name\t"; git log --author="$name" --pretty=tformat: --numstat | awk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf "added lines: %s, removed lines: %s, total lines: %s\n", add, subs, loc }' -; done

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment