Builder: set the keep flag.
(mut self, keep: bool)
| 263 | |
| 264 | /// Builder: set the keep flag. |
| 265 | pub fn with_keep(mut self, keep: bool) -> Self { |
| 266 | self.keep = keep; |
| 267 | self |
| 268 | } |
| 269 | |
| 270 | /// Builder: set the --all subcommand behavior (alias for include_untracked). |
| 271 | pub fn with_all(mut self, all: bool) -> Self { |
no outgoing calls