From: Junio C Hamano Date: Thu, 2 Mar 2006 02:42:03 +0000 (-0800) Subject: Announce, WI and SA updates. X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=17e735177e29373ab8625bc34761c5030f9608fe;p=git.git Announce, WI and SA updates. --- diff --git a/Announce b/Announce index 5e54e35a..3ad582cd 100755 --- a/Announce +++ b/Announce @@ -18,9 +18,12 @@ master) kind="feature" ;; esac -fmt -64 </dev/null` || - test "$m" != pu || exit +echo "To: git@vger.kernel.org" +echo "Subject: What's in git.git" - list=`git-rev-list $in_addition $tagged heads/$m 2>/dev/null` && - test -n "$list" || continue +tagged=`git rev-parse --not --verify tags/sa/master` +list=`git-rev-list $tagged heads/master 2>/dev/null` +if test -n "$list" +then + echo + echo "* The 'master' branch has these since the last announcement." + echo + git log $tagged heads/master | git shortlog +fi - echo "* The '$m' branch$has_msg" +list=`git-rev-list heads/master..heads/next 2>/dev/null` +if test -n "$list" +then + echo echo - git log $in_addition $tagged heads/$m | - git shortlog + echo "* The 'next' branch, in addition, has these." echo + git log --no-merges heads/master..heads/next | git shortlog +fi - in_addition="$in_addition ^heads/$m" - has_msg=', in addition, has these.' -done +list=`git-rev-list ^heads/master ^heads/next heads/pu 2>/dev/null` +if test -n "$list" +then + echo + echo + echo "* The 'pu' branch, in addition, has these." + echo + git log --no-merges ^heads/master ^heads/next heads/pu | git shortlog +fi