Worktrees
Use worktrees when one branch is reproducing an incident and another is active development.
Create an isolated environment
bash
ldev worktree setup --name incident-123 --with-env
cd .worktrees/incident-123
ldev startWhy use it
- keep production-repro work separate from feature work
- compare fixes across branches
- avoid mixing runtime state between unrelated tasks
Runtime Note
Worktrees inherit the files that exist in the branch or commit used as their base.
If your project uses runtime storage overrides such as:
docker-compose.postgres.volume.ymldocker-compose.liferay.volume.ymldocker-compose.elasticsearch.volume.yml
make sure those files already exist in the branch history before you create the worktree. A local copy in the main checkout is not enough if it has not been committed into the branch the worktree uses.
Clean up
bash
ldev worktree clean incident-123 --forceUse this workflow only when isolation matters. Most day-to-day work does not need it.