(r *Remote)
| 642 | } |
| 643 | |
| 644 | func (c *RemoteCollection) untrackRemote(r *Remote) { |
| 645 | c.Lock() |
| 646 | delete(c.remotes, r.ptr) |
| 647 | c.Unlock() |
| 648 | |
| 649 | remotePointers.untrack(r) |
| 650 | } |
| 651 | |
| 652 | func (c *RemoteCollection) List() ([]string, error) { |
| 653 | var r C.git_strarray |
no test coverage detected