(cwd: string, ...args: string[])
| 30 | import { clearProjectConfigCache } from '../src/project-config'; |
| 31 | |
| 32 | function git(cwd: string, ...args: string[]): void { |
| 33 | execFileSync('git', args, { cwd, stdio: ['ignore', 'ignore', 'ignore'] }); |
| 34 | } |
| 35 | |
| 36 | /** git init + commit everything currently in `dir` as one repo. */ |
| 37 | function makeRepo(dir: string): void { |
no outgoing calls
no test coverage detected