()
| 971 | } |
| 972 | |
| 973 | func (o *Remote) RefspecCount() uint { |
| 974 | count := C.git_remote_refspec_count(o.ptr) |
| 975 | runtime.KeepAlive(o) |
| 976 | return uint(count) |
| 977 | } |
| 978 | |
| 979 | func populateFetchOptions(copts *C.git_fetch_options, opts *FetchOptions, errorTarget *error) *C.git_fetch_options { |
| 980 | C.git_fetch_options_init(copts, C.GIT_FETCH_OPTIONS_VERSION) |
nothing calls this directly
no outgoing calls
no test coverage detected