diff options
author | Brandon Williams <bmwill@google.com> | 2018-04-23 15:46:24 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-04-24 11:24:40 +0900 |
commit | 5e3548ef161d4d284e35cf5f5d6a181ba4fe707b (patch) | |
tree | a1e5175546417ed701dbe109b683142b95111261 /transport.c | |
parent | ls-remote: send server options when using protocol v2 (diff) | |
download | tgif-5e3548ef161d4d284e35cf5f5d6a181ba4fe707b.tar.xz |
fetch: send server options when using protocol v2
Teach fetch 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 performing a fetch communicating 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 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/transport.c b/transport.c index e324fa2502..6bce2b20ca 100644 --- a/transport.c +++ b/transport.c @@ -266,6 +266,7 @@ static int fetch_refs_via_pack(struct transport *transport, args.no_dependents = data->options.no_dependents; args.filter_options = data->options.filter_options; args.stateless_rpc = transport->stateless_rpc; + args.server_options = transport->server_options; if (!data->got_remote_heads) refs_tmp = get_refs_via_connect(transport, 0, NULL); |