chore: setup worktree script

This commit is contained in:
Abhishek Kumar 2026-06-30 15:59:18 +05:30
parent 982030d26e
commit 2249d944f3
5 changed files with 66 additions and 4 deletions

12
.vscode/tasks.json vendored
View file

@ -18,6 +18,18 @@
"runOn": "folderOpen"
},
"problemMatcher": []
},
{
// Manual, one-time per worktree (heavy: submodule + venv + deps).
// Run via: Tasks: Run Task -> "Setup worktree environment".
"label": "Setup worktree environment",
"type": "shell",
"command": "${workspaceFolder}/scripts/setup-worktree.sh",
"presentation": {
"reveal": "always",
"panel": "dedicated"
},
"problemMatcher": []
}
]
}