]> git.ipfire.org Git - thirdparty/git.git/commit - Documentation/git-clone.txt
clone: send server options when using protocol v2
authorJonathan Tan <jonathantanmy@google.com>
Fri, 12 Apr 2019 19:51:22 +0000 (12:51 -0700)
committerJunio C Hamano <gitster@pobox.com>
Thu, 18 Apr 2019 01:53:51 +0000 (10:53 +0900)
commit6e98305985555ced61971ca0170dd976554193c0
treeb7203706dc8aade4cb29b5cc9d7f4f6e174cbe9a
parent35eb8240b0849b8d2cf675f1bed5d4dbf977372e
clone: send server options when using protocol v2

Commit 5e3548ef16 ("fetch: send server options when using protocol v2",
2018-04-24) taught "fetch" the ability to send server options when using
protocol v2, but not "clone". This ability is triggered by "-o" or
"--server-option".

Teach "clone" the same ability, except that because "clone" already
has "-o" for another parameter, teach "clone" only to receive
"--server-option".

Explain in the documentation, both for clone and for fetch, that server
handling of server options are server-specific. This is similar to
receive-pack's handling of push options - currently, they are just sent
to hooks to interpret as they see fit.

Signed-off-by: Jonathan Tan <jonathantanmy@google.com>
Reviewed-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/fetch-options.txt
Documentation/git-clone.txt
builtin/clone.c
t/t5702-protocol-v2.sh