WI/WC updates.

This commit is contained in:
Junio C Hamano
2006-12-20 12:23:49 -08:00
parent fc70b3b9ba
commit 58fab02a67
2 changed files with 15 additions and 19 deletions

14
WC Executable file
View File

@@ -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/^\*./*/'

20
WI
View File

@@ -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