Skip to content

Instantly share code, notes, and snippets.

@mfeineis
Created February 28, 2018 08:10
Show Gist options
  • Save mfeineis/f9bcff1ca439b38fa0b8080d01a579a8 to your computer and use it in GitHub Desktop.
Save mfeineis/f9bcff1ca439b38fa0b8080d01a579a8 to your computer and use it in GitHub Desktop.
Display the amount of lines added and removed by a specific author in your git repo
#!/bin/bash
git log --author="John Doe" --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