Free releases the resources of the Remote.
()
| 618 | |
| 619 | // Free releases the resources of the Remote. |
| 620 | func (r *Remote) Free() { |
| 621 | r.repo.Remotes.untrackRemote(r) |
| 622 | if r.weak { |
| 623 | return |
| 624 | } |
| 625 | r.free() |
| 626 | } |
| 627 | |
| 628 | type RemoteCollection struct { |
| 629 | doNotCompare |
nothing calls this directly
no test coverage detected