MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / status_tracked

Method status_tracked

atomic-repository/src/repository/status.rs:588–590  ·  view source on GitHub ↗

Status showing only tracked files (no untracked). # Example ```rust,ignore let status = repo.status_tracked()?; // Only shows modified, deleted, added - no untracked ```

(&self)

Source from the content-addressed store, hash-verified

586 /// // Only shows modified, deleted, added - no untracked
587 /// ```
588 pub fn status_tracked(&self) -> Result<RepositoryStatus, RepositoryError> {
589 self.status(StatusOptions::tracked_only())
590 }
591
592 /// Check if the working copy is clean (no modifications).
593 pub fn is_working_copy_clean(&self) -> Result<bool, RepositoryError> {

Callers

nothing calls this directly

Calls 1

statusMethod · 0.45

Tested by

no test coverage detected