Create options that include everything.
()
| 695 | |
| 696 | /// Create options that include everything. |
| 697 | pub fn all() -> Self { |
| 698 | Self { |
| 699 | include_untracked: true, |
| 700 | include_ignored: true, |
| 701 | ..Default::default() |
| 702 | } |
| 703 | } |
| 704 | |
| 705 | /// Create options for fast status (metadata only, no content hashing). |
| 706 | pub fn fast() -> Self { |