summaryrefslogtreecommitdiff
path: root/commit-org-stats
diff options
context:
space:
mode:
Diffstat (limited to 'commit-org-stats')
-rwxr-xr-xcommit-org-stats9
1 files changed, 9 insertions, 0 deletions
diff --git a/commit-org-stats b/commit-org-stats
new file mode 100755
index 0000000..06d5b3d
--- /dev/null
+++ b/commit-org-stats
@@ -0,0 +1,9 @@
+#! /bin/bash
+
+git log $@ \
+| grep '^Author:' \
+| sed 's/^Author: //g' \
+| sed 's/>[^>]*$/>/g' \
+| $(dirname $0)/fix-emails \
+| $(dirname $0)/to-organizations \
+| sort | uniq -c | sort -n -r | less