(message: string, options?: ExecSyncOptions)
| 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); |
| 25 | }; |
| 26 | |
| 27 | export const push = (branch: string, options?: ExecSyncOptions) => { |
| 28 | if (branch === 'master') { |
nothing calls this directly
no test coverage detected