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

Method status_quick

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

574 /// println!("Modified: {}", status.modified_count());
575 /// ```
576 pub fn status_quick(&self) -> Result<RepositoryStatus, RepositoryError> {
577 self.status(StatusOptions::fast())
578 }
579
580 /// Status showing only tracked files (no untracked).
581 ///

Callers 1

test_repo_status_quickFunction · 0.80

Calls 1

statusMethod · 0.45

Tested by 1

test_repo_status_quickFunction · 0.64