summaryrefslogtreecommitdiff
path: root/bundle.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-11-23 21:54:39 -0800
committerJunio C Hamano <gitster@pobox.com>2009-11-23 21:54:39 -0800
commit75a7ea258c0644b79e57cab3a345807f4017dfd2 (patch)
tree0d55ddcfcbf550dc552a55c9ce15847d1c17114d /bundle.c
parent483106089aea7ad856b7f940e20db254b08bad81 (diff)
parent4f366275189c06ec26c01ee5ace2f3831b2aa46a (diff)
downloadgit-75a7ea258c0644b79e57cab3a345807f4017dfd2.tar.gz
Merge branch 'maint'
* maint: pack-objects: split implications of --all-progress from progress activation instaweb: restart server if already running prune-packed: only show progress when stderr is a tty Conflicts: builtin-pack-objects.c
Diffstat (limited to 'bundle.c')
-rw-r--r--bundle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundle.c b/bundle.c
index df95e151e2..717a712e9a 100644
--- a/bundle.c
+++ b/bundle.c
@@ -351,7 +351,7 @@ int create_bundle(struct bundle_header *header, const char *path,
/* write pack */
argv_pack[0] = "pack-objects";
- argv_pack[1] = "--all-progress";
+ argv_pack[1] = "--all-progress-implied";
argv_pack[2] = "--stdout";
argv_pack[3] = "--thin";
argv_pack[4] = NULL;