(...args: string[])
| 426 | } |
| 427 | |
| 428 | export function git(...args: string[]) { |
| 429 | return _exec({}, process.env.GIT_BIN || 'git', args); |
| 430 | } |
| 431 | |
| 432 | export function silentGit(...args: string[]) { |
| 433 | return _exec({ silent: true }, process.env.GIT_BIN || 'git', args); |
no test coverage detected