Skip to content

Commit 63728e4

Browse files
committed
Merge branch 'jt/promisor-pack-fix'
Updates into a lazy/partial clone with a submodule did not work well with transfer.fsckobjects set. * jt/promisor-pack-fix: fetch-pack: in partial clone, pass --promisor
2 parents 096c948 + 1b03df5 commit 63728e4

File tree

2 files changed

+26
-7
lines changed

2 files changed

+26
-7
lines changed

fetch-pack.c

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -866,13 +866,16 @@ static int get_pack(struct fetch_pack_args *args,
866866
* have this responsibility.
867867
*/
868868
args->check_self_contained_and_connected = 0;
869-
/*
870-
* If we're obtaining the filename of a lockfile, we'll use
871-
* that filename to write a .promisor file with more
872-
* information below. If not, we need index-pack to do it for
873-
* us.
874-
*/
875-
if (!(do_keep && pack_lockfiles) && args->from_promisor)
869+
870+
if (args->from_promisor)
871+
/*
872+
* write_promisor_file() may be called afterwards but
873+
* we still need index-pack to know that this is a
874+
* promisor pack. For example, if transfer.fsckobjects
875+
* is true, index-pack needs to know that .gitmodules
876+
* is a promisor object (so that it won't complain if
877+
* it is missing).
878+
*/
876879
strvec_push(&cmd.args, "--promisor");
877880
}
878881
else {

t/t5616-partial-clone.sh

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,22 @@ test_expect_success 'manual prefetch of missing objects' '
163163
test_line_count = 0 observed.oids
164164
'
165165

166+
test_expect_success 'partial clone with transfer.fsckobjects=1 works with submodules' '
167+
test_create_repo submodule &&
168+
test_commit -C submodule mycommit &&
169+
170+
test_create_repo src_with_sub &&
171+
test_config -C src_with_sub uploadpack.allowfilter 1 &&
172+
test_config -C src_with_sub uploadpack.allowanysha1inwant 1 &&
173+
174+
git -C src_with_sub submodule add "file://$(pwd)/submodule" mysub &&
175+
git -C src_with_sub commit -m "commit with submodule" &&
176+
177+
git -c transfer.fsckobjects=1 \
178+
clone --filter="blob:none" "file://$(pwd)/src_with_sub" dst &&
179+
test_when_finished rm -rf dst
180+
'
181+
166182
test_expect_success 'partial clone with transfer.fsckobjects=1 uses index-pack --fsck-objects' '
167183
git init src &&
168184
test_commit -C src x &&

0 commit comments

Comments
 (0)