From: Rudolf Polzer Date: Sat, 18 Sep 2010 11:07:46 +0000 (+0200) Subject: be more verbose X-Git-Tag: xonotic-v0.1.0preview~202^2~6 X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fxonotic.git;a=commitdiff_plain;h=da36e2366a9336cec50b66bf11aa928d1f4ee226;ds=sidebyside be more verbose --- diff --git a/all b/all index 14af58c4..e4eb461f 100755 --- a/all +++ b/all @@ -928,7 +928,7 @@ case "$cmd" in fi if $gotomaster; then verbose git checkout -f "`repobranch "$d"`" - git reset --hard origin/"`repobranch "$d"`" + verbose git reset --hard origin/"`repobranch "$d"`" else r=`git symbolic-ref HEAD` r=${r#refs/heads/} @@ -961,7 +961,9 @@ case "$cmd" in fi if $killbranches; then git for-each-ref --format='%(refname)' refs/heads/ | while IFS= read -r B; do - git branch -D "${B#refs/heads/}" 2>/dev/null + if [ x"$B" != x"`git symbolic-ref HEAD`" ]; then + verbose git branch -D "${B#refs/heads/}" + fi done fi done