()
| 792 | } |
| 793 | |
| 794 | func (o *Remote) Name() string { |
| 795 | s := C.git_remote_name(o.ptr) |
| 796 | runtime.KeepAlive(o) |
| 797 | return C.GoString(s) |
| 798 | } |
| 799 | |
| 800 | func (o *Remote) Url() string { |
| 801 | s := C.git_remote_url(o.ptr) |
nothing calls this directly
no outgoing calls
no test coverage detected