Status showing only tracked files (no untracked). # Example ```rust,ignore let status = repo.status_tracked()?; // Only shows modified, deleted, added - no untracked ```
(&self)
| 499 | /// // Only shows modified, deleted, added - no untracked |
| 500 | /// ``` |
| 501 | pub fn status_tracked(&self) -> Result<RepositoryStatus, RepositoryError> { |
| 502 | self.status(StatusOptions::tracked_only()) |
| 503 | } |
| 504 | |
| 505 | /// Check if the working copy is clean (no modifications). |
| 506 | pub fn is_working_copy_clean(&self) -> Result<bool, RepositoryError> { |