Remove lock files instead of resolving them during conflict resolution
Lock files like bun.lock and Cargo.lock get regenerated, so resolving their conflict markers is unnecessary work.
This commit is contained in:
parent
1143bf08c9
commit
29cbf29b76
|
|
@ -81,7 +81,7 @@ export async function teardownSession(root: string, branch: string, worktree: st
|
|||
await state.removeSession(root, branch)
|
||||
}
|
||||
|
||||
/** Files that should be resolved by accepting "theirs" instead of using Claude. */
|
||||
/** Files that should be removed rather than resolved — they get regenerated. */
|
||||
const SKIP_RESOLVE = new Set(["bun.lock", "Cargo.lock"])
|
||||
|
||||
/** Resolve conflict markers in files using Claude, then stage them. */
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user