(branch: string, cwd: string)
| 10 | }; |
| 11 | |
| 12 | export const pullBranch = async (branch: string, cwd: string) => { |
| 13 | await execWithOutput("git", ["pull", "origin", branch], { cwd }); |
| 14 | }; |
| 15 | |
| 16 | export const push = async ( |
| 17 | branch: string, |
nothing calls this directly
no test coverage detected