Builder: bootstrap an existing Git checkout.
(mut self, into_existing: bool)
| 266 | |
| 267 | /// Builder: bootstrap an existing Git checkout. |
| 268 | pub fn with_into_existing(mut self, into_existing: bool) -> Self { |
| 269 | self.into_existing = into_existing; |
| 270 | self |
| 271 | } |
| 272 | |
| 273 | /// Builder: clone all remote views, not just the primary one. |
| 274 | pub fn with_all_views(mut self, all_views: bool) -> Self { |
no outgoing calls