(
files: List[str] = typer.Argument(
default=None,
help="The names of one or more files to add to Git's staging area",
)
)
| 19 | |
| 20 | |
| 21 | def add( |
| 22 | files: List[str] = typer.Argument( |
| 23 | default=None, |
| 24 | help="The names of one or more files to add to Git's staging area", |
| 25 | ) |
| 26 | ): |
| 27 | from git_sim.add import Add |
| 28 | |
| 29 | settings.hide_first_tag = True |
| 30 | scene = Add(files=files) |
| 31 | handle_animations(scene=scene) |
| 32 | |
| 33 | |
| 34 | def branch( |
nothing calls this directly
no test coverage detected