WI/WC updates.
parent
fc70b3b9ba
commit
58fab02a67
|
|
@ -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
20
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
|
||||
|
|
|
|||
Loading…
Reference in New Issue