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 "To: git@vger.kernel.org"
16 echo "Subject: What's in git.git (stable)"
17 echo "X-maint-at: $maint_at"
18 echo "X-master-at: $master_at"
20 tagged=`git rev-parse --not --verify tags/sa/maint`
21 list=`git-rev-list $tagged refs/heads/maint 2>/dev/null`
25 echo "* The 'maint' branch has these fixes since the last announcement."
27 log $tagged heads/maint
30 tagged=`git rev-parse --not --verify tags/sa/master`
31 list=`git-rev-list $tagged refs/heads/master 2>/dev/null`
35 echo "* The 'master' branch has these since the last announcement"
36 echo " in addition to the above."
38 log $tagged heads/master ^heads/maint