Skip to content

Instantly share code, notes, and snippets.

@Splat
Created September 22, 2016 23:48
Show Gist options
  • Save Splat/8e7bbf8fc1d63cdeeac888dbeb1ab76e to your computer and use it in GitHub Desktop.
Save Splat/8e7bbf8fc1d63cdeeac888dbeb1ab76e to your computer and use it in GitHub Desktop.
Get some git stats on commiters
git ls-files -z | xargs -0n1 git blame -w | ruby -n -e '$_ =~ /^.*\((.*?)\s[\d]{4}/; puts $1.strip' | sort -f | uniq -c | sort -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment