Snapshot 2006-05-04
Junio C Hamano committed
May 4, 2006 at 16:01 UTC
0bc1bdd1ec394705a13ec726bd25ad5390746277
4 files changed
+15
-5
Doit
+2
-3
index 8a947d2fe4..e10e32e230 100755
--- a/Doit
+++ b/Doit
@@ -8,7 +8,7 @@ test -z "$(git diff --cached --name-status)" || {
}
Meta/Make clean >/dev/null 2>&1
-: ${branches='next master pu'}
+: ${branches='next master maint pu'}
nstall=install
for branch in $branches
@@ -20,8 +20,7 @@ do
Meta/Make $J all &&
Meta/Make $J $nstall &&
Meta/Make test &&
- Meta/Make clean &&
- nstall=all || exit $?
+ Meta/Make clean || exit $?
else
echo "* No $branch"
fi
RB
+6
index ebd5efeaf8..918a3727f7 100755
--- a/RB
+++ b/RB
@@ -9,6 +9,12 @@ sed -n \
-e '/^[^\/][^\/]\//p' |
while read topic
do
+ case " $* " in
+ *' '"$topic"' '*)
+ echo >&2 "* Skipping $topic"
+ continue ;;
+ esac
+
rebase= done= not_done= trouble= date=
topic_sha1=`git rev-parse --verify "refs/heads/$topic"`
TO
+7
-2
index 1ac8fb868d..996a5bab49 100755
--- a/TO
+++ b/TO
@@ -1,11 +1,11 @@
#!/bin/sh
clean= next=next
+branch=`git symbolic-ref HEAD`
while case $# in 0) break ;; esac
do
case "$1" in
--clean)
- branch=`git symbolic-ref HEAD` &&
test refs/heads/master = "$branch" || {
echo >&2 Not on master
exit 1
@@ -40,6 +40,11 @@ while read topic
do
rebase= done= not_done= trouble= date=
topic_sha1=`git rev-parse --verify "refs/heads/$topic"`
+ is_current=
+ if test "refs/heads/$topic" = "$branch"
+ then
+ is_current=" *"
+ fi
date=`
git-rev-list -1 --pretty "$topic" |
@@ -88,7 +93,7 @@ do
not_done="${LF}Up to date."
fi
- echo "*** $topic ***$date$trouble$done$not_done"
+ echo "*** $topic ***$date$is_current$trouble$done$not_done"
if test -z "$trouble$not_done" &&
test -n "$done" &&
jc.png
new file mode 100644
index 0000000000..7b181d15ce
Binary files /dev/null and b/jc.png differ