Skip to content

Instantly share code, notes, and snippets.

@aryankarim
Created June 30, 2022 08:05
Show Gist options
  • Save aryankarim/48b6e05e1bc7fdbf58f75dacba307ab4 to your computer and use it in GitHub Desktop.
Save aryankarim/48b6e05e1bc7fdbf58f75dacba307ab4 to your computer and use it in GitHub Desktop.
show number of added and removed lines git command
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