X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;ds=sidebyside;f=builtin%2Fsend-pack.c;h=2cd1c40b70890732905ad9433e452aa9a9548533;hb=a5066a0b07deb76327e3e3ea845afc899e256c51;hp=8aa303158b2461c9272c8ca5b094149a54cc35d2;hpb=54d04f2b077496739f9fdf04ff8abf24feb33576;p=git.git diff --git a/builtin/send-pack.c b/builtin/send-pack.c index 8aa303158..2cd1c40b7 100644 --- a/builtin/send-pack.c +++ b/builtin/send-pack.c @@ -48,6 +48,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; @@ -59,6 +60,8 @@ static int pack_objects(int fd, struct ref *refs, struct extra_have_objects *ext argv[i++] = "--delta-base-offset"; if (args->quiet) argv[i++] = "-q"; + if (args->progress) + argv[i++] = "--progress"; memset(&po, 0, sizeof(po)); po.argv = argv; po.in = -1;