()
| 804 | } |
| 805 | |
| 806 | func (o *Remote) PushUrl() string { |
| 807 | s := C.git_remote_pushurl(o.ptr) |
| 808 | runtime.KeepAlive(o) |
| 809 | return C.GoString(s) |
| 810 | } |
| 811 | |
| 812 | func (c *RemoteCollection) Rename(remote, newname string) ([]string, error) { |
| 813 | cproblems := C.git_strarray{} |
nothing calls this directly
no outgoing calls
no test coverage detected