Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 181785487ecd48c7a3760ca31a6a245aabb2cbc8 authored by Junio C Hamano on 22 January 2022, 03:05:07 UTC
What's cooking (2022/01 #06)
Tip revision: 1817854
people
#!/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/,$//'


back to top