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

Function record_all

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

Source from the content-addressed store, hash-verified

880 use tempfile::TempDir;
881
882 fn record_all(repo: &Repository, message: &str) {
883 let header = ChangeHeader::new(message);
884 let options = RecordOptions::new()
885 .with_all(true)
886 .save_to_store(true)
887 .apply_after_record(true);
888 repo.record(header, options).unwrap();
889 }
890
891 /// A change recorded only on `feature` that reaches no intent (the KG has
892 /// 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