Merge branch 'origin'
[git.git] / WI
1 #!/bin/sh
2 # Prepare "What's in git.git"
3
4 echo "To: git@vger.kernel.org"
5 echo "Subject: What's in git.git"
6
7 tagged=`git rev-parse --not --verify tags/sa/master`
8 list=`git-rev-list $tagged heads/master 2>/dev/null`
9 if test -n "$list"
10 then
11         echo
12         echo "* The 'master' branch has these since the last announcement."
13         echo
14         git log $tagged heads/master | git shortlog
15 fi
16
17 list=`git-rev-list heads/master..heads/next 2>/dev/null`
18 if test -n "$list"
19 then
20         echo
21         echo
22         echo "* The 'next' branch, in addition, has these."
23         echo
24         git log --no-merges heads/master..heads/next | git shortlog
25 fi
26
27 list=`git-rev-list ^heads/master ^heads/next heads/pu 2>/dev/null`
28 if test -n "$list"
29 then
30         echo
31         echo
32         echo "* The 'pu' branch, in addition, has these."
33         echo
34         git log --no-merges ^heads/master ^heads/next heads/pu | git shortlog
35 fi