(directory?: string)
| 10 | export const config = (section: string, value: string) => runCommand(`git config --global --add ${section} '${value}'`); |
| 11 | |
| 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); |
nothing calls this directly
no test coverage detected