(
branch: str = typer.Argument(
...,
help="The name of the branch to checkout",
),
b: bool = typer.Option(
False,
"-b",
help="Create the specified branch if it doesn't already exist",
),
)
| 44 | |
| 45 | |
| 46 | def checkout( |
| 47 | branch: str = typer.Argument( |
| 48 | ..., |
| 49 | help="The name of the branch to checkout", |
| 50 | ), |
| 51 | b: bool = typer.Option( |
| 52 | False, |
| 53 | "-b", |
| 54 | help="Create the specified branch if it doesn't already exist", |
| 55 | ), |
| 56 | ): |
| 57 | from git_sim.checkout import Checkout |
| 58 | |
| 59 | scene = Checkout(branch=branch, b=b) |
| 60 | handle_animations(scene=scene) |
| 61 | |
| 62 | |
| 63 | def cherry_pick( |
nothing calls this directly
no test coverage detected