Snapshot 2006-05-04
parent
8e6f38443e
commit
0bc1bdd1ec
5
Doit
5
Doit
|
@ -8,7 +8,7 @@ test -z "$(git diff --cached --name-status)" || {
|
||||||
}
|
}
|
||||||
Meta/Make clean >/dev/null 2>&1
|
Meta/Make clean >/dev/null 2>&1
|
||||||
|
|
||||||
: ${branches='next master pu'}
|
: ${branches='next master maint pu'}
|
||||||
|
|
||||||
nstall=install
|
nstall=install
|
||||||
for branch in $branches
|
for branch in $branches
|
||||||
|
@ -20,8 +20,7 @@ do
|
||||||
Meta/Make $J all &&
|
Meta/Make $J all &&
|
||||||
Meta/Make $J $nstall &&
|
Meta/Make $J $nstall &&
|
||||||
Meta/Make test &&
|
Meta/Make test &&
|
||||||
Meta/Make clean &&
|
Meta/Make clean || exit $?
|
||||||
nstall=all || exit $?
|
|
||||||
else
|
else
|
||||||
echo "* No $branch"
|
echo "* No $branch"
|
||||||
fi
|
fi
|
||||||
|
|
6
RB
6
RB
|
@ -9,6 +9,12 @@ sed -n \
|
||||||
-e '/^[^\/][^\/]\//p' |
|
-e '/^[^\/][^\/]\//p' |
|
||||||
while read topic
|
while read topic
|
||||||
do
|
do
|
||||||
|
case " $* " in
|
||||||
|
*' '"$topic"' '*)
|
||||||
|
echo >&2 "* Skipping $topic"
|
||||||
|
continue ;;
|
||||||
|
esac
|
||||||
|
|
||||||
rebase= done= not_done= trouble= date=
|
rebase= done= not_done= trouble= date=
|
||||||
topic_sha1=`git rev-parse --verify "refs/heads/$topic"`
|
topic_sha1=`git rev-parse --verify "refs/heads/$topic"`
|
||||||
|
|
||||||
|
|
9
TO
9
TO
|
@ -1,11 +1,11 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
clean= next=next
|
clean= next=next
|
||||||
|
branch=`git symbolic-ref HEAD`
|
||||||
while case $# in 0) break ;; esac
|
while case $# in 0) break ;; esac
|
||||||
do
|
do
|
||||||
case "$1" in
|
case "$1" in
|
||||||
--clean)
|
--clean)
|
||||||
branch=`git symbolic-ref HEAD` &&
|
|
||||||
test refs/heads/master = "$branch" || {
|
test refs/heads/master = "$branch" || {
|
||||||
echo >&2 Not on master
|
echo >&2 Not on master
|
||||||
exit 1
|
exit 1
|
||||||
|
@ -40,6 +40,11 @@ while read topic
|
||||||
do
|
do
|
||||||
rebase= done= not_done= trouble= date=
|
rebase= done= not_done= trouble= date=
|
||||||
topic_sha1=`git rev-parse --verify "refs/heads/$topic"`
|
topic_sha1=`git rev-parse --verify "refs/heads/$topic"`
|
||||||
|
is_current=
|
||||||
|
if test "refs/heads/$topic" = "$branch"
|
||||||
|
then
|
||||||
|
is_current=" *"
|
||||||
|
fi
|
||||||
|
|
||||||
date=`
|
date=`
|
||||||
git-rev-list -1 --pretty "$topic" |
|
git-rev-list -1 --pretty "$topic" |
|
||||||
|
@ -88,7 +93,7 @@ do
|
||||||
not_done="${LF}Up to date."
|
not_done="${LF}Up to date."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "*** $topic ***$date$trouble$done$not_done"
|
echo "*** $topic ***$date$is_current$trouble$done$not_done"
|
||||||
|
|
||||||
if test -z "$trouble$not_done" &&
|
if test -z "$trouble$not_done" &&
|
||||||
test -n "$done" &&
|
test -n "$done" &&
|
||||||
|
|
Loading…
Reference in New Issue