summaryrefslogtreecommitdiff
path: root/people
blob: 2aeef340d3259832773a56ebd3cd25f2ed879884 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# Feed whats-cooking to find who are involved
 
sed -ne 's|\(.* \)*\* \([a-z][a-z]/[a-z0-9][-_a-z0-9]*\) ([-0-9]*) [0-9]* commit.*|\2|p' |
while read topic
do
	git log --format="%an <%ae>" --no-merges "$topic" ^master
done |
sort -u |
sed -e '/Junio C Hamano/d' -e 's/.*/    &,/' -e '$s/,$//'