(copts *C.git_proxy_options)
| 585 | } |
| 586 | |
| 587 | func freeProxyOptions(copts *C.git_proxy_options) { |
| 588 | if copts == nil { |
| 589 | return |
| 590 | } |
| 591 | |
| 592 | C.free(unsafe.Pointer(copts.url)) |
| 593 | } |
| 594 | |
| 595 | // RemoteNameIsValid returns whether the remote name is well-formed. |
| 596 | func RemoteNameIsValid(name string) (bool, error) { |
no test coverage detected
searching dependent graphs…