(cwd: string, args: string[])
| 9 | import { syncLocalGitSubmodules, syncRuntimeGitSubmodules } from "./submoduleSync"; |
| 10 | |
| 11 | function git(cwd: string, args: string[]): void { |
| 12 | execFileSync("git", args, { cwd, stdio: "ignore" }); |
| 13 | } |
| 14 | |
| 15 | async function initGitRepo(repoPath: string, files: Record<string, string>): Promise<void> { |
| 16 | await fs.mkdir(repoPath, { recursive: true }); |
no outgoing calls
no test coverage detected