(command: string, args?: string[], options?: Options)
| 32 | |
| 33 | export const createGit = async (cwd: string) => { |
| 34 | const git = (command: string, args?: string[], options?: Options) => |
| 35 | execa('git', [command, ...(args || [])], { |
| 36 | cwd, |
| 37 | ...options, |
| 38 | }); |
| 39 | |
| 40 | await git('init', [ |
| 41 | // In case of different default branch name |
no outgoing calls
no test coverage detected