(path, commit, repo_root)
| 5 | |
| 6 | |
| 7 | def create_worktree(path, commit, repo_root): |
| 8 | remove_worktree(path, repo_root) |
| 9 | run_command(f"git worktree add {path} {commit}", cwd=repo_root) |
| 10 | |
| 11 | |
| 12 | def remove_worktree(path, repo_root): |
no test coverage detected