Set whether to include untracked files.
(mut self, include: bool)
| 706 | |
| 707 | /// Set whether to include untracked files. |
| 708 | pub fn with_untracked(mut self, include: bool) -> Self { |
| 709 | self.include_untracked = include; |
| 710 | self |
| 711 | } |
| 712 | |
| 713 | /// Set whether to include ignored files. |
| 714 | pub fn with_ignored(mut self, include: bool) -> Self { |
no outgoing calls