Move ko-master, sa/master and friends out of tags
[git] / WI
1 #!/bin/sh
2 # Prepare "What's in git.git"
3
4 maint_at=$(git rev-parse --verify refs/heads/maint)
5 master_at=$(git rev-parse --verify refs/heads/master)
6
7 log () {
8         git shortlog --no-merges "$@" |
9         perl -pe '
10                 if (/^      /) { s//  /; }
11                 elsif (!/^$/) { s/^/ / }
12         '
13 }
14
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"
21
22 tagged=`git rev-parse --not --verify hold/sa/maint`
23 list=`git-rev-list $tagged refs/heads/maint 2>/dev/null`
24 if test -n "$list"
25 then
26         echo
27         echo "* The 'maint' branch has these fixes since the last announcement."
28         echo
29         log $tagged heads/maint
30 fi
31
32 tagged=`git rev-parse --not --verify hold/sa/master`
33 list=`git-rev-list $tagged refs/heads/master 2>/dev/null`
34 if test -n "$list"
35 then
36         echo
37         echo "* The 'master' branch has these since the last announcement"
38         echo "  in addition to the above."
39         echo
40         log $tagged heads/master ^heads/maint
41 fi