From: Johannes Schindelin Date: Fri, 9 Mar 2007 02:48:27 +0000 (+0100) Subject: git-bundle: handle thin packs in subcommand "unbundle" X-Git-Tag: v1.5.1-rc1~50^2~2 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=263703fff38d252907d1c7ae9977038715e2e22f;p=git.git git-bundle: handle thin packs in subcommand "unbundle" The patch to make the packs in a bundle thin forgot the receiving side. D'oh. Signed-off-by: Johannes Schindelin Signed-off-by: Junio C Hamano --- diff --git a/builtin-bundle.c b/builtin-bundle.c index 616335819..33b533f82 100644 --- a/builtin-bundle.c +++ b/builtin-bundle.c @@ -374,7 +374,8 @@ static int create_bundle(struct bundle_header *header, const char *path, static int unbundle(struct bundle_header *header, int bundle_fd, int argc, const char **argv) { - const char *argv_index_pack[] = {"index-pack", "--stdin", NULL}; + const char *argv_index_pack[] = {"index-pack", + "--fix-thin", "--stdin", NULL}; int pid, status, dev_null; if (verify_bundle(header, 0))