Skip to content

Instantly share code, notes, and snippets.

@rghose
Created April 2, 2014 13:49
Show Gist options
  • Save rghose/9934517 to your computer and use it in GitHub Desktop.
Save rghose/9934517 to your computer and use it in GitHub Desktop.
Git commit statistics
#!/bin/bash
git log | grep Author | awk -F: '{count[$2]++;} END {for (c in count) { print count[c], c; } }' | sort -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment