diff --git a/src/github/operations/restore-config.ts b/src/github/operations/restore-config.ts index f4fffe67..fa8bb4a9 100644 --- a/src/github/operations/restore-config.ts +++ b/src/github/operations/restore-config.ts @@ -54,7 +54,7 @@ export function restoreConfigFromBase(baseBranch: string): void { rmSync(".claude-pr", { recursive: true, force: true }); for (const p of SENSITIVE_PATHS) { if (existsSync(p)) { - cpSync(p, `.claude-pr/${p}`, { recursive: true }); + cpSync(p, `.claude-pr/${p}`, { recursive: true, dereference: true }); } } if (existsSync(".claude-pr")) {