Merge branch 'jk/fix-proto-downgrade-to-v0'
Transports that do not support protocol v2 did not correctly fall back to protocol v0 under certain conditions, which has been corrected. * jk/fix-proto-downgrade-to-v0: git_connect(): fix corner cases in downgrading v2 to v0
This commit is contained in:
@ -474,10 +474,11 @@ static struct discovery *discover_refs(const char *service, int for_push)
|
||||
|
||||
/*
|
||||
* NEEDSWORK: If we are trying to use protocol v2 and we are planning
|
||||
* to perform a push, then fallback to v0 since the client doesn't know
|
||||
* how to push yet using v2.
|
||||
* to perform any operation that doesn't involve upload-pack (i.e., a
|
||||
* fetch, ls-remote, etc), then fallback to v0 since we don't know how
|
||||
* to do anything else (like push or remote archive) via v2.
|
||||
*/
|
||||
if (version == protocol_v2 && !strcmp("git-receive-pack", service))
|
||||
if (version == protocol_v2 && strcmp("git-upload-pack", service))
|
||||
version = protocol_v0;
|
||||
|
||||
/* Add the extra Git-Protocol header */
|
||||
|
Reference in New Issue
Block a user