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

Method status_quick

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

456 /// println!("Modified: {}", status.modified_count());
457 /// ```
458 pub fn status_quick(&self) -> Result<RepositoryStatus, RepositoryError> {
459 self.status(StatusOptions::fast())
460 }
461
462 /// Status showing only tracked files (no untracked).
463 ///

Callers 1

test_repo_status_quickFunction · 0.80

Calls 1

statusMethod · 0.45

Tested by 1

test_repo_status_quickFunction · 0.64