Set whether to include untracked files.
(mut self, include: bool)
| 718 | |
| 719 | /// Set whether to include untracked files. |
| 720 | pub fn with_untracked(mut self, include: bool) -> Self { |
| 721 | self.include_untracked = include; |
| 722 | self |
| 723 | } |
| 724 | |
| 725 | /// Set whether to include ignored files. |
| 726 | pub fn with_ignored(mut self, include: bool) -> Self { |
no outgoing calls