]> asedeno.scripts.mit.edu Git - git.git/blobdiff - builtin-send-pack.c
Merge branch 'rg/doc-workflow' into maint
[git.git] / builtin-send-pack.c
index 47fb9f7baa9ad9c070e1a6d9c245300ba2402ce5..2c4eaae684065df70a435c212ebe3848aa0d9444 100644 (file)
@@ -38,12 +38,13 @@ static int pack_objects(int fd, struct ref *refs, struct extra_have_objects *ext
         */
        const char *argv[] = {
                "pack-objects",
-               "--all-progress",
+               "--all-progress-implied",
                "--revs",
                "--stdout",
                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;