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

Method status_quick

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

Quick status check — uses default options. # Example ```rust,ignore let status = repo.status_quick()?; println!("Modified: {}", status.modified_count()); ```

(&self)

Source from the content-addressed store, hash-verified

487 /// println!("Modified: {}", status.modified_count());
488 /// ```
489 pub fn status_quick(&self) -> Result<RepositoryStatus, RepositoryError> {
490 self.status(StatusOptions::fast())
491 }
492
493 /// Status showing only tracked files (no untracked).
494 ///

Callers 1

test_repo_status_quickFunction · 0.80

Calls 1

statusMethod · 0.45

Tested by 1

test_repo_status_quickFunction · 0.64