(copts *C.git_cherrypick_options)
| 35 | } |
| 36 | |
| 37 | func freeCherrypickOpts(copts *C.git_cherrypick_options) { |
| 38 | if copts == nil { |
| 39 | return |
| 40 | } |
| 41 | freeMergeOptions(&copts.merge_opts) |
| 42 | freeCheckoutOptions(&copts.checkout_opts) |
| 43 | } |
| 44 | |
| 45 | func DefaultCherrypickOptions() (CherrypickOptions, error) { |
| 46 | c := C.git_cherrypick_options{} |
no test coverage detected
searching dependent graphs…