Skip to content

Instantly share code, notes, and snippets.

@melizeche
Created March 25, 2025 17:05
Show Gist options
  • Save melizeche/68f1a49fa81e846c221464380aa81d00 to your computer and use it in GitHub Desktop.
Save melizeche/68f1a49fa81e846c221464380aa81d00 to your computer and use it in GitHub Desktop.
get lines of code added/deleted by author in a repo
git log --author=<emailregex> --pretty=tformat: --numstat | awk '{ adds += $1; subs += $2; loc += $1 - $2 } END { printf "added lines: %s, removed lines: %s, total lines: %s, added:deleted ratio:%s\n", adds, subs, loc, adds/subs }' -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment