X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=builtin-send-pack.c;h=37e528e28364fbde5a5ba31316aa7bf66d43586b;hb=3fe271e91b4d1b9ed0b304e218df8fd419012107;hp=47fb9f7baa9ad9c070e1a6d9c245300ba2402ce5;hpb=749086fa090d81c10ebf16b1abfd138c3fa0232e;p=git.git diff --git a/builtin-send-pack.c b/builtin-send-pack.c index 47fb9f7ba..37e528e28 100644 --- a/builtin-send-pack.c +++ b/builtin-send-pack.c @@ -44,6 +44,7 @@ static int pack_objects(int fd, struct ref *refs, struct extra_have_objects *ext NULL, NULL, NULL, + NULL, }; struct child_process po; int i; @@ -53,6 +54,8 @@ static int pack_objects(int fd, struct ref *refs, struct extra_have_objects *ext argv[i++] = "--thin"; if (args->use_ofs_delta) argv[i++] = "--delta-base-offset"; + if (args->quiet) + argv[i++] = "-q"; memset(&po, 0, sizeof(po)); po.argv = argv; po.in = -1;