(options?: ExecSyncOptions)
| 16 | }; |
| 17 | |
| 18 | export const listFiles = (options?: ExecSyncOptions) => |
| 19 | runCommand(`git ls-files --exclude-standard -oi --directory`, options); |
| 20 | |
| 21 | export const add = (options?: ExecSyncOptions) => runCommand('git add .', options); |
| 22 |
nothing calls this directly
no test coverage detected