Skip to content

Commit

Permalink
Retain multiple -q/-v occurrences in git pull
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Tuncer Ayaz authored and Junio C Hamano committed Nov 19, 2008
1 parent 7f87aff commit c6576f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions git-pull.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit c6576f9

Please sign in to comment.