Builder: set the switch flag.
(mut self, switch: bool)
| 242 | |
| 243 | /// Builder: set the switch flag. |
| 244 | pub fn with_switch(mut self, switch: bool) -> Self { |
| 245 | self.switch = switch; |
| 246 | self |
| 247 | } |
| 248 | |
| 249 | /// Two-tier view creation: --draft and/or --parent |
| 250 | fn run_two_tier(&self, name: &str, repo: &mut Repository) -> CliResult<()> { |
no outgoing calls