Builder: set the include-untracked flag.
(mut self, include: bool)
| 257 | |
| 258 | /// Builder: set the include-untracked flag. |
| 259 | pub fn with_include_untracked(mut self, include: bool) -> Self { |
| 260 | self.include_untracked = include; |
| 261 | self |
| 262 | } |
| 263 | |
| 264 | /// Builder: set the keep flag. |
| 265 | pub fn with_keep(mut self, keep: bool) -> Self { |
no outgoing calls