(params: DeleteBranchParams)
| 1306 | } |
| 1307 | |
| 1308 | async function handleDeleteBranch(params: DeleteBranchParams): Promise<void> { |
| 1309 | const { repoRoot } = await resolveGitInfo(params.repoDir) |
| 1310 | await execGit(["branch", "-D", params.branchName], repoRoot) |
| 1311 | } |
| 1312 | |
| 1313 | /** |
| 1314 | * List all worktrees (supports subdirectories) |
no test coverage detected