@@ -65,7 +65,6 @@ func (r *Remote) Push(o *PushOptions) error {
65
65
// operation is complete, an error is returned. The context only affects to the
66
66
// transport operations.
67
67
func (r * Remote ) PushContext (ctx context.Context , o * PushOptions ) error {
68
- // TODO: Sideband support
69
68
if err := o .Validate (); err != nil {
70
69
return err
71
70
}
@@ -108,9 +107,8 @@ func (r *Remote) PushContext(ctx context.Context, o *PushOptions) error {
108
107
return ErrDeleteRefNotSupported
109
108
}
110
109
111
- req := packp .NewReferenceUpdateRequestFromCapabilities (ar .Capabilities )
112
- if err := r .addReferencesToUpdate (o .RefSpecs , remoteRefs , req ); err != nil {
113
-
110
+ req , err := r .newReferenceUpdateRequest (o , remoteRefs , ar )
111
+ if err != nil {
114
112
return err
115
113
}
116
114
@@ -158,6 +156,25 @@ func (r *Remote) PushContext(ctx context.Context, o *PushOptions) error {
158
156
return r .updateRemoteReferenceStorage (req , rs )
159
157
}
160
158
159
+ func (r * Remote ) newReferenceUpdateRequest (o * PushOptions , remoteRefs storer.ReferenceStorer , ar * packp.AdvRefs ) (* packp.ReferenceUpdateRequest , error ) {
160
+ req := packp .NewReferenceUpdateRequestFromCapabilities (ar .Capabilities )
161
+
162
+ if o .Progress != nil {
163
+ req .Progress = o .Progress
164
+ if ar .Capabilities .Supports (capability .Sideband64k ) {
165
+ req .Capabilities .Set (capability .Sideband64k )
166
+ } else if ar .Capabilities .Supports (capability .Sideband ) {
167
+ req .Capabilities .Set (capability .Sideband )
168
+ }
169
+ }
170
+
171
+ if err := r .addReferencesToUpdate (o .RefSpecs , remoteRefs , req ); err != nil {
172
+ return nil , err
173
+ }
174
+
175
+ return req , nil
176
+ }
177
+
161
178
func (r * Remote ) updateRemoteReferenceStorage (
162
179
req * packp.ReferenceUpdateRequest ,
163
180
result * packp.ReportStatus ,
0 commit comments