(slug: string)
| 231 | } |
| 232 | |
| 233 | export function worktreeBranchName(slug: string): string { |
| 234 | return `worktree-${flattenSlug(slug)}` |
| 235 | } |
| 236 | |
| 237 | function worktreePathFor(repoRoot: string, slug: string): string { |
| 238 | return join(getWorktreesDir(repoRoot), flattenSlug(slug)) |
no test coverage detected