Builder: set whether to hide untracked files.
(mut self, no_untracked: bool)
| 223 | |
| 224 | /// Builder: set whether to hide untracked files. |
| 225 | pub fn with_no_untracked(mut self, no_untracked: bool) -> Self { |
| 226 | self.no_untracked = no_untracked; |
| 227 | self |
| 228 | } |
| 229 | |
| 230 | /// Get status options based on command settings. |
| 231 | fn get_status_options(&self) -> StatusOptions { |
no outgoing calls