git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Retain multiple -q/-v occurrences in git pull
@ 2008-11-17 22:09 Tuncer Ayaz
  2008-11-19  1:53 ` Junio C Hamano
  2008-11-19 11:46 ` Constantine Plotnikov
  0 siblings, 2 replies; 6+ messages in thread
From: Tuncer Ayaz @ 2008-11-17 22:09 UTC (permalink / raw)
  To: git; +Cc: gitster

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

^ permalink raw reply related	[flat|nested] 6+ messages in thread
* [PATCH] Retain multiple -q/-v occurrences in git pull
@ 2008-11-17 22:10 Tuncer Ayaz
  0 siblings, 0 replies; 6+ messages in thread
From: Tuncer Ayaz @ 2008-11-17 22:10 UTC (permalink / raw)
  To: gitster; +Cc: git

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

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2008-11-19 23:01 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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
  -- strict thread matches above, loose matches on Subject: below --
2008-11-17 22:10 Tuncer Ayaz

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