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 --no-merges "$@" |
11 elsif (!/^$/) { s/^/ / }
15 echo "From: Junio C Hamano <junkio@cox.net>"
16 echo "Subject: What's in git.git (stable)"
17 echo "X-maint-at: $maint_at"
18 echo "X-master-at: $master_at"
19 echo "Content-Type: text/plain; charset=utf-8"
20 echo "Content-Transfer-Encoding: 8bit"
22 tagged=`git rev-parse --not --verify hold/sa/maint`
23 list=`git-rev-list $tagged refs/heads/maint 2>/dev/null`
27 echo "* The 'maint' branch has these fixes since the last announcement."
29 log $tagged heads/maint
32 tagged=`git rev-parse --not --verify hold/sa/master`
33 list=`git-rev-list $tagged refs/heads/master 2>/dev/null`
37 echo "* The 'master' branch has these since the last announcement"
38 echo " in addition to the above."
40 log $tagged heads/master ^heads/maint