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

Function record_all

atomic-cli/src/commands/triage/project.rs:1111–1118  ·  view source on GitHub ↗
(repo: &Repository, message: &str)

Source from the content-addressed store, hash-verified

1109 use tempfile::TempDir;
1110
1111 fn record_all(repo: &Repository, message: &str) {
1112 let header = ChangeHeader::new(message);
1113 let options = RecordOptions::new()
1114 .with_all(true)
1115 .save_to_store(true)
1116 .apply_after_record(true);
1117 repo.record(header, options).unwrap();
1118 }
1119
1120 /// A change recorded only on `feature` that reaches no intent (the KG has
1121 /// no task/intent join) is a candidate, is flagged ORPHAN_CHANGE, and blocks

Calls 5

apply_after_recordMethod · 0.80
save_to_storeMethod · 0.80
with_allMethod · 0.45
unwrapMethod · 0.45
recordMethod · 0.45