Git worktrees — a feature that lets multiple branches be checked out simultaneously from a single clone — have become popular with coding agents that run parallel sub-agents. Each sub-agent gets an isolated working directory without the cost of a full re-clone. Dolt, the version-controlled SQL database, already solves this problem natively: every database connection can operate on a different branch simultaneously, giving each agent its own isolated working set by default. The post concludes that Dolt worktrees are unnecessary for the SQL server use case, and unlikely to be implemented for the CLI either due to database size concerns. Agents wanting worktree-like behavior with Dolt should simply connect to a Dolt SQL Server on separate branches.