(branch_name: str)
| 482 | |
| 483 | |
| 484 | def branch_exists(branch_name: str) -> bool: |
| 485 | res = run(["git", "branch", "--list", branch_name], capture_output=True) |
| 486 | return bool(res.stdout.strip()) |
| 487 | |
| 488 | |
| 489 | def update_old_branch(branch_name): |
no test coverage detected
searching dependent graphs…