From 6b0de8c456863aca88add79d8aed8221e4652322 Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Wed, 13 Oct 2010 11:47:59 +0200 Subject: [PATCH] don't need the rev-parse output either --- all | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/all b/all index c66ff713..d8322274 100755 --- a/all +++ b/all @@ -1075,8 +1075,8 @@ case "$cmd" in verbose git branch -D "${B#refs/heads/}" fi done - git rev-parse refs/heads/master 2>/dev/null || verbose git branch -t master origin/master || true - git rev-parse "refs/heads/`repobranch "$d"`" 2>/dev/null || verbose git branch -t "`repobranch "$d"`" origin/"`repobranch "$d"`" || true + git rev-parse refs/heads/master >/dev/null 2>&1 || verbose git branch -t master origin/master || true + git rev-parse "refs/heads/`repobranch "$d"`" >/dev/null 2>&1 || verbose git branch -t "`repobranch "$d"`" origin/"`repobranch "$d"`" || true fi done ;; -- 2.39.2