Skip to content

Instantly share code, notes, and snippets.

@Digi92
Last active September 28, 2022 15:21
Show Gist options
  • Save Digi92/ddd5cff6aa169019b79af7300776fdd4 to your computer and use it in GitHub Desktop.
Save Digi92/ddd5cff6aa169019b79af7300776fdd4 to your computer and use it in GitHub Desktop.
Just replace `<AUTHORNAME>` with the person name you want to see
git log --author="<AUTHORNAME>" --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 }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment