aboutsummaryrefslogtreecommitdiffstats
path: root/builtin/bundle.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2024-12-13 07:33:36 -0800
committerJunio C Hamano <gitster@pobox.com>2024-12-13 07:33:36 -0800
commita32668829d0b23a11f47596812e74725791142a1 (patch)
tree74ca317f4234e0b8b0fa3029291eb3dba15d6140 /builtin/bundle.c
parentcaacdb5dfd60540ecec30ec479f147f3c8167e11 (diff)
parentbaa159137be36965e03192528b001ffc39b8352f (diff)
downloadgit-a32668829d0b23a11f47596812e74725791142a1.tar.gz
Merge branch 'jt/bundle-fsck'
"git bundle --unbundle" and "git clone" running on a bundle file both learned to trigger fsck over the new objects with configurable fck check levels. * jt/bundle-fsck: transport: propagate fsck configuration during bundle fetch fetch-pack: split out fsck config parsing bundle: support fsck message configuration bundle: add bundle verification options type
Diffstat (limited to 'builtin/bundle.c')
-rw-r--r--builtin/bundle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/bundle.c b/builtin/bundle.c
index 3f14754197..1e170e9278 100644
--- a/builtin/bundle.c
+++ b/builtin/bundle.c
@@ -222,7 +222,7 @@ static int cmd_bundle_unbundle(int argc, const char **argv, const char *prefix,
strvec_pushl(&extra_index_pack_args, "-v", "--progress-title",
_("Unbundling objects"), NULL);
ret = !!unbundle(the_repository, &header, bundle_fd,
- &extra_index_pack_args, 0) ||
+ &extra_index_pack_args, NULL) ||
list_bundle_refs(&header, argc, argv);
bundle_header_release(&header);