Skip to content

Instantly share code, notes, and snippets.

@rianjs
Created September 26, 2019 17:41
Show Gist options
  • Save rianjs/b7022c5429dceb4050d23419a6857872 to your computer and use it in GitHub Desktop.
Save rianjs/b7022c5429dceb4050d23419a6857872 to your computer and use it in GitHub Desktop.
#!/bin/sh git log --numstat | awk '/^Author: /{author=$0} /^[0-9]+\t[0-9]+/{n = $1 + $2; d[author] += n; t += n} END { for(a in d) { printf("%6d %6.3f%% %s\n", d[a], d[a] * 100 / t, a)}}' | sort -rn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment