# Multiple Workspaces in Git (Worktrees) You can add an additional workspace with `git worktree add -d <PATH TO WORKSPACE>` `-d` will create a detached workspace i.e. it will not automatically create a new branch for the workspace (which is what you want). ## Sources - [[Git Worktree Documentation]]