(branch, remote, *, cwd, dry_run=False)
| 57 | |
| 58 | |
| 59 | def git_push(branch, remote, *, cwd, dry_run=False): |
| 60 | git(["checkout", branch], cwd=cwd, dry_run=dry_run) |
| 61 | git(["push", remote, branch], cwd=cwd, dry_run=dry_run) |
| 62 | |
| 63 | |
| 64 | def short_sha(git_root): |
no test coverage detected
searching dependent graphs…