(copts *C.git_push_options)
| 1020 | } |
| 1021 | |
| 1022 | func freePushOptions(copts *C.git_push_options) { |
| 1023 | if copts == nil { |
| 1024 | return |
| 1025 | } |
| 1026 | untrackCallbacksPayload(&copts.callbacks) |
| 1027 | freeStrarray(&copts.custom_headers) |
| 1028 | freeProxyOptions(&copts.proxy_opts) |
| 1029 | } |
| 1030 | |
| 1031 | // Fetch performs a fetch operation. refspecs specifies which refspecs |
| 1032 | // to use for this fetch, use an empty list to use the refspecs from |
no test coverage detected
searching dependent graphs…