()
| 798 | } |
| 799 | |
| 800 | func (o *Remote) Url() string { |
| 801 | s := C.git_remote_url(o.ptr) |
| 802 | runtime.KeepAlive(o) |
| 803 | return C.GoString(s) |
| 804 | } |
| 805 | |
| 806 | func (o *Remote) PushUrl() string { |
| 807 | s := C.git_remote_pushurl(o.ptr) |
nothing calls this directly
no outgoing calls
no test coverage detected