From: Tuncer Ayaz <tuncer.ayaz@gmail.com>
To: gitster@pobox.com
Cc: git@vger.kernel.org
Subject: [PATCH] Retain multiple -q/-v occurrences in git pull
Date: Mon, 17 Nov 2008 23:10:50 +0100 [thread overview]
Message-ID: <1226959850-4329-1-git-send-email-tuncer.ayaz@gmail.com> (raw)
To support counting -q/-v options in git pull retain
them by concatenating.
Signed-off-by: Tuncer Ayaz <tuncer.ayaz@gmail.com>
---
git-pull.sh | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/git-pull.sh b/git-pull.sh
index 8866f2a..1cac898 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)
--
1.6.0.2.GIT
next reply other threads:[~2008-11-17 22:12 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-11-17 22:10 Tuncer Ayaz [this message]
-- strict thread matches above, loose matches on Subject: below --
2008-11-17 22:09 [PATCH] Retain multiple -q/-v occurrences in git pull Tuncer Ayaz
2008-11-19 1:53 ` Junio C Hamano
2008-11-19 11:46 ` Constantine Plotnikov
2008-11-19 22:47 ` Tuncer Ayaz
[not found] ` <4ac8254d0811191458r2a205be3w4a412553edc9b07f@mail.gmail.com>
2008-11-19 23:00 ` Tuncer Ayaz
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1226959850-4329-1-git-send-email-tuncer.ayaz@gmail.com \
--to=tuncer.ayaz@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).