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>
This commit is contained in:
Tuncer Ayaz 2008-11-17 23:09:30 +01:00 committed by Junio C Hamano
parent 7f87aff22c
commit c6576f912f

View file

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