diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-09-06 11:42:12 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-09-06 11:42:12 -0700 |
commit | 48f36dcd7320d27a840e89fc2aa7ab11716951c6 (patch) | |
tree | 404b25022bc48ca9eda54774c9001e30e34c89d1 /remote-curl.c | |
parent | b32128793de296348a565e8f7c4257ec82208a48 (diff) | |
parent | 509d59705ee07094bcc56b49a17ba0ae983da50f (diff) | |
download | git-48f36dcd7320d27a840e89fc2aa7ab11716951c6.tar.gz |
Sync with 1.7.6.2
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'remote-curl.c')
-rw-r--r-- | remote-curl.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/remote-curl.c b/remote-curl.c index 5798aa57b6..b8cf45a7dd 100644 --- a/remote-curl.c +++ b/remote-curl.c @@ -762,9 +762,7 @@ static int push_git(struct discovery *heads, int nr_spec, char **specs) argv[argc++] = "--thin"; if (options.dry_run) argv[argc++] = "--dry-run"; - if (options.verbosity < 0) - argv[argc++] = "--quiet"; - else if (options.verbosity > 1) + if (options.verbosity > 1) argv[argc++] = "--verbose"; argv[argc++] = url; for (i = 0; i < nr_spec; i++) |