aboutsummaryrefslogtreecommitdiff
path: root/git-pull.sh
diff options
context:
space:
mode:
authorTuncer Ayaz <tuncer.ayaz@gmail.com>2008-11-17 23:09:30 +0100
committerJunio C Hamano <gitster@pobox.com>2008-11-18 16:10:05 -0800
commitc6576f912fc34193a02d7ec587484f7c2ce3fe77 (patch)
treee1f5856846d1f0ae610156f6fde5a4252c179eff /git-pull.sh
parent7f87aff22c0232a5ce327ea3d2923776936c97f4 (diff)
downloadgit-c6576f912fc34193a02d7ec587484f7c2ce3fe77.tar.gz
git-c6576f912fc34193a02d7ec587484f7c2ce3fe77.tar.xz
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>
Diffstat (limited to 'git-pull.sh')
-rwxr-xr-xgit-pull.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/git-pull.sh b/git-pull.sh
index 8866f2a1e..1cac898a2 100755
--- a/git-pull.sh
+++ b/git-pull.sh
@@ -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)