Skip to content

Instantly share code, notes, and snippets.

@csauve
Created June 21, 2018 22:18
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 csauve/3a3b15bae4df96d8ccf1de083f35b5ff to your computer and use it in GitHub Desktop.
Save csauve/3a3b15bae4df96d8ccf1de083f35b5ff to your computer and use it in GitHub Desktop.
List line contributions to all git repos in CWD
for d in ./*/ ; do (cd "$d" && git log --author="<name here>" --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