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