Skip to content

Commit d11b783

Browse files
dschoGit for Windows Build Agent
authored and
Git for Windows Build Agent
committed
Merge pull request #2375 from assarbad/reintroduce-sideband-config
Config option to disable side-band-64k for transport
2 parents 6900afd + aca1250 commit d11b783

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

Documentation/config.adoc

+2
Original file line numberDiff line numberDiff line change
@@ -518,6 +518,8 @@ include::config/safe.adoc[]
518518

519519
include::config/sendemail.adoc[]
520520

521+
include::config/sendpack.adoc[]
522+
521523
include::config/sequencer.adoc[]
522524

523525
include::config/showbranch.adoc[]

Documentation/config/sendpack.adoc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
sendpack.sideband::
2+
Allows to disable the side-band-64k capability for send-pack even
3+
when it is advertised by the server. Makes it possible to work
4+
around a limitation in the git for windows implementation together
5+
with the dump git protocol. Defaults to true.

send-pack.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ int send_pack(struct repository *r,
497497
int need_pack_data = 0;
498498
int allow_deleting_refs = 0;
499499
int status_report = 0;
500-
int use_sideband = 0;
500+
int use_sideband = 1;
501501
int quiet_supported = 0;
502502
int agent_supported = 0;
503503
int advertise_sid = 0;
@@ -521,6 +521,7 @@ int send_pack(struct repository *r,
521521
goto out;
522522
}
523523

524+
repo_config_get_bool(r, "sendpack.sideband", &use_sideband);
524525
repo_config_get_bool(r, "push.negotiate", &push_negotiate);
525526
if (push_negotiate) {
526527
trace2_region_enter("send_pack", "push_negotiate", r);
@@ -542,8 +543,7 @@ int send_pack(struct repository *r,
542543
allow_deleting_refs = 1;
543544
if (server_supports("ofs-delta"))
544545
args->use_ofs_delta = 1;
545-
if (server_supports("side-band-64k"))
546-
use_sideband = 1;
546+
use_sideband = use_sideband && server_supports("side-band-64k");
547547
if (server_supports("quiet"))
548548
quiet_supported = 1;
549549
if (server_supports("agent"))

0 commit comments

Comments
 (0)