Create options that include everything.
()
| 683 | |
| 684 | /// Create options that include everything. |
| 685 | pub fn all() -> Self { |
| 686 | Self { |
| 687 | include_untracked: true, |
| 688 | include_ignored: true, |
| 689 | ..Default::default() |
| 690 | } |
| 691 | } |
| 692 | |
| 693 | /// Create options for fast status (metadata only, no content hashing). |
| 694 | pub fn fast() -> Self { |