2 # Prepare "What's in git.git"
4 maint_at
=$
(git rev-parse
--verify refs
/heads
/maint
)
5 master_at
=$
(git rev-parse
--verify refs
/heads
/master
)
8 git shortlog
-w76,2,4 --no-merges "$@"
11 echo "Subject: What's in git.git (stable)"
12 echo "X-maint-at: $maint_at"
13 echo "X-master-at: $master_at"
15 tagged
=`git rev-parse --not --verify hold/sa/maint`
16 list
=`git rev-list $tagged refs/heads/maint 2>/dev/null`
20 echo "* The 'maint' branch has these fixes since the last announcement."
22 log
$tagged heads
/maint
25 tagged
=`git rev-parse --not --verify hold/sa/master`
26 list
=`git rev-list $tagged refs/heads/master 2>/dev/null`
30 echo "* The 'master' branch has these since the last announcement"
31 echo " in addition to the above."
33 log
$tagged heads
/master ^
heads
/maint