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

Method status_quick

atomic-repository/src/repository/status.rs:625–627  ·  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

623 /// println!("Modified: {}", status.modified_count());
624 /// ```
625 pub fn status_quick(&self) -> Result<RepositoryStatus, RepositoryError> {
626 self.status(StatusOptions::fast())
627 }
628
629 /// Status showing only tracked files (no untracked).
630 ///

Callers 1

test_repo_status_quickFunction · 0.80

Calls 1

statusMethod · 0.45

Tested by 1

test_repo_status_quickFunction · 0.64