What's cooking (2024/05 #02)
[git.git] / WCBCC
blobfdded8075d21cfc97ae44f4e6f243673c8a5e04e
1 #!/bin/sh
3 MASTER=master
4 BASE=${1-HEAD}
7 echo seen
8 sed -ne 's/^\* \([^ ]*\) ([-0-9]*) [1-9][0-9]* commits\{0,1\}$/\1/p' \
9 Meta/whats-cooking.txt |
10 while read branch
12 git show-ref "refs/heads/$branch" >/dev/null &&
13 echo "$branch"
14 done
15 git -C Meta/ cat-file blob "${BASE}:whats-cooking.txt" |
16 sed -ne "s/^X-$MASTER-at: / --not /p" -e '/^$/q'
17 ) |
18 xargs git shortlog -s -e --no-merges |
19 sed -e 's/.*</ </' -e '$q' -e 's/$/,/'