summaryrefslogtreecommitdiff
path: root/commit-stats
blob: ffc0b6d73eb80e389cb78d458d18842f5f6070fd (plain)
1
2
3
4
5
6
7
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