MCPcopy Create free account
hub / github.com/ScriptedAlchemy/tracedecay / commit_all

Function commit_all

tests/dashboard_api_test/dashboard_api_support.rs:764–778  ·  view source on GitHub ↗
(project: &Path, message: &str)

Source from the content-addressed store, hash-verified

762}
763
764pub(crate) fn commit_all(project: &Path, message: &str) {
765 git(project, &["add", "."]);
766 git(
767 project,
768 &[
769 "-c",
770 "user.name=TraceDecay Test",
771 "-c",
772 "user.email=tracedecay-test@example.com",
773 "commit",
774 "-m",
775 message,
776 ],
777 );
778}
779
780pub(crate) async fn index_all_retrying_sync_lock(cg: &TraceDecay, context: &str) {
781 for attempt in 0..20 {

Callers

nothing calls this directly

Calls 1

gitFunction · 0.70

Tested by

no test coverage detected