Skip to content

Commit daaf419

Browse files
Add ProxyOptions for push operations (#872) (#880)
Analog to #623 but for push operations rather than fetch. (cherry picked from commit 5eca48c) Co-authored-by: Aurélien <[email protected]>
1 parent 6dc9c7c commit daaf419

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

remote.go

+5
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,9 @@ type PushOptions struct {
290290

291291
// Headers are extra headers for the push operation.
292292
Headers []string
293+
294+
// Proxy options to use for this push operation
295+
ProxyOptions ProxyOptions
293296
}
294297

295298
type RemoteHead struct {
@@ -990,6 +993,7 @@ func populatePushOptions(copts *C.git_push_options, opts *PushOptions, errorTarg
990993
strings: makeCStringsFromStrings(opts.Headers),
991994
}
992995
populateRemoteCallbacks(&copts.callbacks, &opts.RemoteCallbacks, errorTarget)
996+
populateProxyOptions(&copts.proxy_opts, &opts.ProxyOptions)
993997
return copts
994998
}
995999

@@ -999,6 +1003,7 @@ func freePushOptions(copts *C.git_push_options) {
9991003
}
10001004
untrackCallbacksPayload(&copts.callbacks)
10011005
freeStrarray(&copts.custom_headers)
1006+
freeProxyOptions(&copts.proxy_opts)
10021007
}
10031008

10041009
// Fetch performs a fetch operation. refspecs specifies which refspecs

0 commit comments

Comments
 (0)