(args, *, cwd, dry_run=False, check=True, capture=False)
| 53 | |
| 54 | |
| 55 | def git(args, *, cwd, dry_run=False, check=True, capture=False): |
| 56 | return run(["git"] + args, cwd=cwd, dry_run=dry_run, check=check, capture=capture) |
| 57 | |
| 58 | |
| 59 | def git_push(branch, remote, *, cwd, dry_run=False): |
no test coverage detected