Browse Source

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>
maint
Tuncer Ayaz 16 years ago committed by Junio C Hamano
parent
commit
c6576f912f
  1. 4
      git-pull.sh

4
git-pull.sh

@ -24,9 +24,9 @@ while :
do do
case "$1" in case "$1" in
-q|--quiet) -q|--quiet)
verbosity=-q ;; verbosity="$verbosity -q" ;;
-v|--verbose) -v|--verbose)
verbosity=-v ;; verbosity="$verbosity -v" ;;
-n|--no-stat|--no-summary) -n|--no-stat|--no-summary)
no_stat=-n ;; no_stat=-n ;;
--stat|--summary) --stat|--summary)

Loading…
Cancel
Save