From cbb268fc6209a9d73fa9373c4e677fef327030a4 Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Tue, 9 Sep 2008 21:42:46 +0200 Subject: [PATCH] tg info: Asterisk-prefix 'out-of-band' warnings --- tg-info.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tg-info.sh b/tg-info.sh index 7209169..f5502db 100644 --- a/tg-info.sh +++ b/tg-info.sh @@ -28,7 +28,7 @@ measure="$(measure_branch "$name" "$base_rev")" echo "Topic Branch: $name ($measure)" if [ "$(git rev-parse --short "$name")" = "$base_rev" ]; then - echo "No commits." + echo "* No commits." exit 0 fi @@ -36,14 +36,14 @@ git cat-file blob "$name:.topmsg" | grep ^Subject: echo "Base: $base_rev" branch_contains "$name" "$base_rev" || - echo "Base is newer than head! Please run \`tg update\`." + echo "* Base is newer than head! Please run \`tg update\`." if has_remote "$name"; then echo "Remote Mate: $base_remote/$name" branch_contains "$base_rev" "refs/remotes/$base_remote/top-bases/$name" || - echo "Local base is out of date wrt. the remote base." + echo "* Local base is out of date wrt. the remote base." branch_contains "$name" "refs/remotes/$base_remote/$name" || - echo "Local head is out of date wrt. the remote head." + echo "* Local head is out of date wrt. the remote head." fi git cat-file blob "$name:.topdeps" | -- 2.11.4.GIT