MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / commit

Function commit

e2e/fixtures/custom-tools-git/generate.ts:116–120  ·  view source on GitHub ↗
(root: string, message: string)

Source from the content-addressed store, hash-verified

114`;
115
116const commit = (root: string, message: string): string => {
117 run(root, ["add", "."]);
118 run(root, ["commit", "-q", "-m", message]);
119 return run(root, ["rev-parse", "HEAD"]);
120};
121
122const pack = async (root: string, sha: string, name: string) => {
123 const proc = Bun.spawnSync({

Callers 1

generate.tsFile · 0.70

Calls 1

runFunction · 0.70

Tested by

no test coverage detected