parallelization false but it create worktree #1377
-
|
Hey! I've set Using GSD v1.28 with Claude Code. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
The issue is that GSD treats "parallelization" and "isolation" as two distinct features. Even if you aren't running tasks concurrently, it still spins up a worktree sandbox by default to protect your active working directory from the LLM's changes. To run everything directly in the main directory, I believe you need to explicitly disable isolation in your config: {
"isolation": false
}IIRC, in some sub-versions of v1.28, this might also be nested under a Gotcha: Be careful—when you disable isolation, GSD operates on your live files. If Claude goes off the rails and nukes a directory, you won't have a worktree to simply discard. Always make sure your |
Beta Was this translation helpful? Give feedback.
-
|
Fixed in v1.31.0! New {
"workflow": {
"use_worktrees": false
}
}Set this in Update: Generated by Claude Code |
Beta Was this translation helpful? Give feedback.
Fixed in v1.31.0! New
workflow.use_worktreesconfig option (PR #1456):{ "workflow": { "use_worktrees": false } }Set this in
.planning/config.jsonor via/gsd:settings. Whenfalse, execution runs sequentially in the main working tree — no worktrees created.Update:
npx get-shit-done-cc@latestGenerated by Claude Code