(branch: string, options?: ExecSyncOptions)
| 38 | }; |
| 39 | |
| 40 | export const createBranch = (branch: string, options?: ExecSyncOptions) => { |
| 41 | runCommand(`git checkout -b ${branch}`, options); |
| 42 | }; |
| 43 | |
| 44 | export const setIdentity = (name: string, email: string) => { |
| 45 | config('user.name', name); |
nothing calls this directly
no test coverage detected