Address returns mirror address from Git repository config without credentials.
()
| 121 | |
| 122 | // Address returns mirror address from Git repository config without credentials. |
| 123 | func (m *Mirror) Address() string { |
| 124 | m.readAddress() |
| 125 | return HandleMirrorCredentials(m.address, false) |
| 126 | } |
| 127 | |
| 128 | // MosaicsAddress returns mirror address from Git repository config with credentials under mosaics. |
| 129 | func (m *Mirror) MosaicsAddress() string { |
nothing calls this directly
no test coverage detected