What's wrong with this entry?
Anonymous. No account, no email.
What
Configure directories to symlink when using git worktrees, preventing disk bloat from duplicated dependencies.
Usage: Add to your settings:
{
"worktree": {
"symlinkDirectories": ["node_modules", ".cache", ".bin"]
}
}Details
- No directories are symlinked by default — must be explicitly configured
- Common candidates:
node_modules,.cache,.bin - Prevents duplicating large directories across worktrees
- Part of the
--worktreeflag configuration
Evidence
Settings schema (search for "Directories to symlink from main repository")
Strings lifted out of the shipped bundle, so the claim above can be checked against them.