From c6576f912fc34193a02d7ec587484f7c2ce3fe77 Mon Sep 17 00:00:00 2001 From: Tuncer Ayaz Date: Mon, 17 Nov 2008 23:09:30 +0100 Subject: Retain multiple -q/-v occurrences in git pull To support counting -q/-v options in git pull retain them by concatenating. Signed-off-by: Tuncer Ayaz Signed-off-by: Junio C Hamano --- git-pull.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'git-pull.sh') diff --git a/git-pull.sh b/git-pull.sh index 8866f2a1e..1cac898a2 100755 --- a/git-pull.sh +++ b/git-pull.sh @@ -24,9 +24,9 @@ while : do case "$1" in -q|--quiet) - verbosity=-q ;; + verbosity="$verbosity -q" ;; -v|--verbose) - verbosity=-v ;; + verbosity="$verbosity -v" ;; -n|--no-stat|--no-summary) no_stat=-n ;; --stat|--summary) -- cgit v1.2.1