summaryrefslogtreecommitdiff
path: root/send-pack.h
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2009-08-05 20:22:36 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-08-06 03:14:09 (GMT)
commit120703292b2828d3c35c937b7f5e75ec570a42e9 (patch)
tree577e2cab5b6e57cbc88b8c7a9f4d5a6a79d61f5a /send-pack.h
parentafdeeb00eec471d86c9d421781ba8cb545be849c (diff)
downloadgit-120703292b2828d3c35c937b7f5e75ec570a42e9.zip
git-120703292b2828d3c35c937b7f5e75ec570a42e9.tar.gz
git-120703292b2828d3c35c937b7f5e75ec570a42e9.tar.bz2
transport: pass "quiet" flag to pack-objects
When pushing over the git protocol, pack-objects gives progress reports about the pack being sent. If "push" is given the --quiet flag, it now passes "-q" to pack-objects, suppressing this output. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'send-pack.h')
-rw-r--r--send-pack.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/send-pack.h b/send-pack.h
index 1d7b1b3..8b3cf02 100644
--- a/send-pack.h
+++ b/send-pack.h
@@ -3,6 +3,7 @@
struct send_pack_args {
unsigned verbose:1,
+ quiet:1,
send_mirror:1,
force_update:1,
use_thin_pack:1,