blob: 06d5b3da4fcc77830270a9d8ca86e7fd5c35af3c (
plain)
1
2
3
4
5
6
7
8
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
|