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 : @@ -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)

Loading…
Cancel
Save