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

Function format_local_state

atomic-cli/src/commands/push/helpers.rs:498–505  ·  view source on GitHub ↗

Format the local state for display.

(entries: &[HistoryEntry])

Source from the content-addressed store, hash-verified

496
497/// Format the local state for display.
498fn format_local_state(entries: &[HistoryEntry]) -> String {
499 if let Some(entry) = entries.last() {
500 let short_state = &entry.state.to_base32()[..12];
501 format!("{} ({} changes)", short_state, entries.len())
502 } else {
503 "(empty)".to_string()
504 }
505}
506
507/// Format the remote state for display.
508fn format_remote_state(state: &StateResponse, entries: &[ChangelistEntry]) -> String {

Callers 2

display_state_comparisonFunction · 0.70

Calls 2

lastMethod · 0.80
to_base32Method · 0.45

Tested by 1