diff options
author | Jonathan Tan <jonathantanmy@google.com> | 2018-07-06 12:34:10 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-07-09 12:37:38 -0700 |
commit | a7e67c11b8b983b4a9f56f0b8990a550946ed6b0 (patch) | |
tree | 4d6c21ce1997eee50092820a068e69fcafc9feac /builtin/clone.c | |
parent | upload-pack: send refs' objects despite "filter" (diff) | |
download | tgif-a7e67c11b8b983b4a9f56f0b8990a550946ed6b0.tar.xz |
clone: check connectivity even if clone is partial
The commit that introduced the partial clone feature - 548719fbdc
("clone: partial clone", 2017-12-08) - excluded connectivity checks
for partial clones, but this also meant that it is possible for a clone
to succeed, yet not have all objects either present or promised.
Specifically, if cloning with --filter=blob:none from a repository that
has a tag pointing to a blob, and the blob is not sent in the packfile,
the clone will pass, even if the blob is not referenced by any tree in
the packfile.
Turn on connectivity checks for partial clone.
Signed-off-by: Jonathan Tan <jonathantanmy@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/clone.c')
-rw-r--r-- | builtin/clone.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/clone.c b/builtin/clone.c index 8f86d99c51..fa53550758 100644 --- a/builtin/clone.c +++ b/builtin/clone.c @@ -1201,7 +1201,7 @@ int cmd_clone(int argc, const char **argv, const char *prefix) update_remote_refs(refs, mapped_refs, remote_head_points_at, branch_top.buf, reflog_msg.buf, transport, - !is_local && !filter_options.choice); + !is_local); update_head(our_head_points_at, remote_head, reflog_msg.buf); |