(cwd: string, args: string[])
| 6 | import { WorktreeManager } from './worktree.manager.js'; |
| 7 | |
| 8 | function git(cwd: string, args: string[]): string { |
| 9 | return execFileSync('git', args, { cwd, encoding: 'utf-8', stdio: ['ignore', 'pipe', 'pipe'] }); |
| 10 | } |
| 11 | |
| 12 | function initRepo(repoPath: string) { |
| 13 | fs.mkdirSync(repoPath, { recursive: true }); |
no outgoing calls
no test coverage detected