File tree 3 files changed +10
-3
lines changed 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -518,6 +518,8 @@ include::config/safe.txt[]
518
518
519
519
include::config/sendemail.txt[]
520
520
521
+ include::config/sendpack.txt[]
522
+
521
523
include::config/sequencer.txt[]
522
524
523
525
include::config/showbranch.txt[]
Original file line number Diff line number Diff line change
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.
Original file line number Diff line number Diff line change @@ -494,7 +494,7 @@ int send_pack(struct send_pack_args *args,
494
494
int need_pack_data = 0 ;
495
495
int allow_deleting_refs = 0 ;
496
496
int status_report = 0 ;
497
- int use_sideband = 0 ;
497
+ int use_sideband = 1 ;
498
498
int quiet_supported = 0 ;
499
499
int agent_supported = 0 ;
500
500
int advertise_sid = 0 ;
@@ -518,6 +518,7 @@ int send_pack(struct send_pack_args *args,
518
518
goto out ;
519
519
}
520
520
521
+ git_config_get_bool ("sendpack.sideband" , & use_sideband );
521
522
git_config_get_bool ("push.negotiate" , & push_negotiate );
522
523
if (push_negotiate ) {
523
524
trace2_region_enter ("send_pack" , "push_negotiate" , the_repository );
@@ -539,8 +540,7 @@ int send_pack(struct send_pack_args *args,
539
540
allow_deleting_refs = 1 ;
540
541
if (server_supports ("ofs-delta" ))
541
542
args -> use_ofs_delta = 1 ;
542
- if (server_supports ("side-band-64k" ))
543
- use_sideband = 1 ;
543
+ use_sideband = use_sideband && server_supports ("side-band-64k" );
544
544
if (server_supports ("quiet" ))
545
545
quiet_supported = 1 ;
546
546
if (server_supports ("agent" ))
You can’t perform that action at this time.
0 commit comments