(ref: string, options?: ExecSyncOptions)
| 12 | export const clone = (directory?: string) => runCommand(`git clone ${AIRNODE_REPOSITORY} ${directory ?? ''}`); |
| 13 | |
| 14 | export const checkout = (ref: string, options?: ExecSyncOptions) => { |
| 15 | runCommand(`git checkout ${ref}`, options); |
| 16 | }; |
| 17 | |
| 18 | export const listFiles = (options?: ExecSyncOptions) => |
| 19 | runCommand(`git ls-files --exclude-standard -oi --directory`, options); |
nothing calls this directly
no test coverage detected