fetch-pack: print and use dangling .gitmodules
Teach index-pack to print dangling .gitmodules links after its "keep" or "pack" line instead of declaring an error, and teach fetch-pack to check such lines printed. This allows the tree side of the .gitmodules link to be in one packfile and the blob side to be in another without failing the fsck check, because it is now fetch-pack which checks such objects after all packfiles have been downloaded and indexed (and not index-pack on an individual packfile, as it is before this commit). Signed-off-by: Jonathan Tan <jonathantanmy@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
b664e9ffa1
commit
5476e1efde
@ -2275,7 +2275,7 @@ static const char *unpack(int err_fd, struct shallow_info *si)
|
||||
status = start_command(&child);
|
||||
if (status)
|
||||
return "index-pack fork failed";
|
||||
pack_lockfile = index_pack_lockfile(child.out);
|
||||
pack_lockfile = index_pack_lockfile(child.out, NULL);
|
||||
close(child.out);
|
||||
status = finish_command(&child);
|
||||
if (status)
|
||||
|
Reference in New Issue
Block a user