(slug: string)
| 219 | } |
| 220 | |
| 221 | export function worktreeBranchName(slug: string): string { |
| 222 | return `worktree-${flattenSlug(slug)}` |
| 223 | } |
| 224 | |
| 225 | function worktreePathFor(repoRoot: string, slug: string): string { |
| 226 | return join(worktreesDir(repoRoot), flattenSlug(slug)) |
no test coverage detected