summaryrefslogtreecommitdiff
path: root/commit-stats
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2014-04-21 16:17:10 -0700
committerKenneth Graunke <kenneth@whitecape.org>2014-04-21 16:17:10 -0700
commitfc80c04eb03e61a249f68e6f629f681c3995a683 (patch)
treefca8fc574da6e328d36ead977d733d2b30e3ec3f /commit-stats
Initial commit (lol)
Diffstat (limited to 'commit-stats')
-rwxr-xr-xcommit-stats8
1 files changed, 8 insertions, 0 deletions
diff --git a/commit-stats b/commit-stats
new file mode 100755
index 0000000..ffc0b6d
--- /dev/null
+++ b/commit-stats
@@ -0,0 +1,8 @@
+#! /bin/bash
+
+git log $@ \
+| grep '^Author:' \
+| sed 's/^Author: //g' \
+| sed 's/>[^>]*$/>/g' \
+| $(dirname $0)/fix-emails \
+| sort | uniq -c | sort -n -r | less