]> git.ipfire.org Git - thirdparty/git.git/commit - builtin/clone.c
clone: fix up delay cloning conditions
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>
Tue, 24 Jan 2012 11:10:38 +0000 (18:10 +0700)
committerJunio C Hamano <gitster@pobox.com>
Tue, 24 Jan 2012 18:05:15 +0000 (10:05 -0800)
commit9049816140e75d3f7b15264e97e042f5ab0bf392
treee679d9dd18f4131379102e2147712e05d878d32b
parentdad0b3d8e5586ff8c901a6bd643ea9bfe55d75a7
clone: fix up delay cloning conditions

6f48d39 (clone: delay cloning until after remote HEAD checking -
2012-01-16) allows us to perform some checks on remote refs before the
actual cloning happens. But not all transport types support
this. Remote helper with "import" capability will not return complete
ref information until fetch is performed and therefore the clone cannot
be delayed.

foreign_vcs field in struct remote was used to detect this kind of transport
and save the result. This is a mistake because foreign_vcs is designed
to override url-based transport detection. As a result, if the same
"struct transport *" object is used on many different urls and one of
them attached remote transport, the following urls will be mistakenly
attached to the same transport. This fault is worked around by dad0b3d
(push: do not let configured foreign-vcs permanently clobbered -
2012-01-23)

To fix this, detect incomplete refs from transport_get_remote_refs()
by SHA-1. Incomplete ones must have null SHA-1 (*). Then revert
changes related to foreign_cvs field in 6f48d39 and dad0b3d.

A good thing from this change is that cloning smart http transport can
also be delayed. Earlier it falls into the same category "remote
transport, no delay".

(*) Theoretically if one of the remote refs happens to have null SHA-1,
it will trigger false alarm and the clone will not be delayed. But
that chance may be too small for us to pay attention to.

Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/clone.c
builtin/push.c
transport.c