diff options
author | Brandon Williams <bmwill@google.com> | 2018-04-24 00:46:23 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-04-24 04:24:40 +0200 |
commit | ff473221b4d6cf0894ba47370492d853a36c024d (patch) | |
tree | 50b103baec013524704188718b2c46433ce4ce10 /transport.c | |
parent | serve: introduce the server-option capability (diff) | |
download | git-ff473221b4d6cf0894ba47370492d853a36c024d.tar.xz git-ff473221b4d6cf0894ba47370492d853a36c024d.zip |
ls-remote: send server options when using protocol v2
Teach ls-remote to optionally accept server options by specifying them
on the cmdline via '-o' or '--server-option'. These server options are
sent to the remote end when querying for the remote end's refs using
protocol version 2.
If communicating using a protocol other than v2 the provided options are
ignored and not sent to the remote end.
Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'transport.c')
-rw-r--r-- | transport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/transport.c b/transport.c index 16b2f54f22..e324fa2502 100644 --- a/transport.c +++ b/transport.c @@ -218,7 +218,7 @@ static struct ref *get_refs_via_connect(struct transport *transport, int for_pus switch (data->version) { case protocol_v2: get_remote_refs(data->fd[1], &reader, &refs, for_push, - ref_prefixes); + ref_prefixes, transport->server_options); break; case protocol_v1: case protocol_v0: |