diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2008-11-17 23:09:30 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-11-18 16:10:05 -0800 |
commit | c6576f912fc34193a02d7ec587484f7c2ce3fe77 (patch) | |
tree | e1f5856846d1f0ae610156f6fde5a4252c179eff /git-pull.sh | |
parent | 7f87aff22c0232a5ce327ea3d2923776936c97f4 (diff) | |
download | git-c6576f912fc34193a02d7ec587484f7c2ce3fe77.tar.gz |
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 <tuncer.ayaz@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-pull.sh')
-rwxr-xr-x | git-pull.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git-pull.sh b/git-pull.sh index 8866f2a1e2..1cac898a24 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) |