(options?: ExecSyncOptions)
| 19 | runCommand(`git ls-files --exclude-standard -oi --directory`, options); |
| 20 | |
| 21 | export const add = (options?: ExecSyncOptions) => runCommand('git add .', options); |
| 22 | |
| 23 | export const commit = (message: string, options?: ExecSyncOptions) => { |
| 24 | runCommand(`git commit --no-verify -m '${message}'`, options); |
nothing calls this directly
no test coverage detected