RawAddress returns raw mirror address directly from Git repository config.
()
| 133 | |
| 134 | // RawAddress returns raw mirror address directly from Git repository config. |
| 135 | func (m *Mirror) RawAddress() string { |
| 136 | m.readAddress() |
| 137 | return m.address |
| 138 | } |
| 139 | |
| 140 | // SaveAddress writes new address to Git repository config. |
| 141 | func (m *Mirror) SaveAddress(addr string) error { |