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
parent
7f87aff22c
commit
c6576f912f
|
@ -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…
Reference in New Issue