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