Builder: bootstrap an existing Git checkout.
(mut self, into_existing: bool)
| 286 | |
| 287 | /// Builder: bootstrap an existing Git checkout. |
| 288 | pub fn with_into_existing(mut self, into_existing: bool) -> Self { |
| 289 | self.into_existing = into_existing; |
| 290 | self |
| 291 | } |
| 292 | |
| 293 | /// Builder: clone all remote views, not just the primary one. |
| 294 | pub fn with_all_views(mut self, all_views: bool) -> Self { |
no outgoing calls