Tag: pnpm
All the articles with the tag "pnpm".
-
pnpm 如何用 Git Worktree 支持多 Agent 并行开发
Published: at 06:24 AMpnpm 这篇关于 git worktrees 的文档,表面上是在教你怎么开多个 worktree,真正更重要的是它把多 agent 并行开发里一个很现实的问题说透了:每个 agent 都需要隔离工作区和可运行的 node_modules,但如果你靠重复 clone 和重复安装,磁盘、时间和依赖管理很快就爆炸。git worktree 解决代码副本,pnpm 的 global virtual store 解决依赖副本,两者叠起来,才让多 agent 并行在 monorepo 里变得真正可持续。