(branch_name)
| 499 | |
| 500 | |
| 501 | def diff_old_new_branch(branch_name): |
| 502 | branch_name_old = branch_name + "-old" |
| 503 | if not branch_exists(branch_name_old): |
| 504 | return |
| 505 | if os.isatty(sys.stdout.fileno()): |
| 506 | print("\nWill show diff between previous branch and new branch.") |
| 507 | input("Press enter to continue.") |
| 508 | run(["git", "diff", branch_name_old, branch_name]) |
| 509 | |
| 510 | |
| 511 | def last_tag_tuple() -> tuple[str, str, str]: |
no test coverage detected
searching dependent graphs…