diff --git a/WC b/WC new file mode 100755 index 0000000000..c1262970e8 --- /dev/null +++ b/WC @@ -0,0 +1,14 @@ +#!/bin/sh +# Prepare "What's cooking in git.git" + +master_at=$(git rev-parse --verify refs/heads/master) +next_at=$(git rev-parse --verify refs/heads/next) + +echo "To: git@vger.kernel.org" +echo "Subject: What's cooking in git.git (topics)" +echo "X-master-at: $master_at" +echo "X-next-at: $next_at" + +Meta/git-topic.perl --base=master | sed -e 's/^\*./*/' + + diff --git a/WI b/WI index 724dedc772..d586477b1d 100755 --- a/WI +++ b/WI @@ -11,7 +11,7 @@ log () { } echo "To: git@vger.kernel.org" -echo "Subject: What's in git.git" +echo "Subject: What's in git.git (stable)" echo "X-maint-at: $maint_at" echo "X-master-at: $master_at" @@ -34,21 +34,3 @@ then echo log $tagged heads/master fi - -list=`git-rev-list refs/heads/master..refs/heads/next 2>/dev/null` -if test -n "$list" -then - echo - echo "* The 'next' branch, in addition, has these." - echo - log heads/master..heads/next -fi - -list=`git-rev-list ^refs/heads/master ^refs/heads/next refs/heads/pu 2>/dev/null` -if test -n "$list" -then - echo - echo "* The 'pu' branch, in addition, has these." - echo - log ^heads/master heads/next..heads/pu -fi