git/WI

35 lines
845 B
Plaintext
Raw Normal View History

2006-02-19 08:38:06 +00:00
#!/bin/sh
# Prepare "What's in git.git"
maint_at=$(git rev-parse --verify refs/heads/maint)
2006-04-14 20:54:38 +00:00
master_at=$(git rev-parse --verify refs/heads/master)
log () {
2007-12-01 21:40:11 +00:00
git shortlog -w76,2,4 --no-merges "$@"
}
2006-12-20 20:23:49 +00:00
echo "Subject: What's in git.git (stable)"
echo "X-maint-at: $maint_at"
2006-04-14 20:54:38 +00:00
echo "X-master-at: $master_at"
2006-02-19 08:54:54 +00:00
tagged=`git rev-parse --not --verify hold/sa/maint`
list=`git-rev-list $tagged refs/heads/maint 2>/dev/null`
if test -n "$list"
then
echo
echo "* The 'maint' branch has these fixes since the last announcement."
echo
log $tagged heads/maint
fi
tagged=`git rev-parse --not --verify hold/sa/master`
2006-04-14 20:54:38 +00:00
list=`git-rev-list $tagged refs/heads/master 2>/dev/null`
2006-03-02 02:42:03 +00:00
if test -n "$list"
then
echo
echo "* The 'master' branch has these since the last announcement"
echo " in addition to the above."
2006-03-02 02:42:03 +00:00
echo
log $tagged heads/master ^heads/maint
2006-03-02 02:42:03 +00:00
fi