PU - --continue.
[git.git] / WI
1 #!/bin/sh
2 # Prepare "What's in git.git"
3
4 has_msg=' has these since the last announcement.'
5 in_addition=
6 for m in master next pu
7 do
8         tagged=`git rev-parse --not --verify tags/sa/$m 2>/dev/null` ||
9         test "$m" != pu || exit
10
11         list=`git-rev-list $in_addition $tagged heads/$m 2>/dev/null` &&
12         test -n "$list" || continue
13
14         echo "* The '$m' branch$has_msg"
15         echo
16         git log $in_addition $tagged heads/$m |
17         git shortlog
18         echo
19
20         in_addition="$in_addition ^heads/$m"
21         has_msg=', in addition, has these.'
22 done