Normally, you switch between branches, but Git Worktrees let you work on multiple branches at the same time.
git worktree add
)git worktree list
)git worktree remove
)Task 23: Create a worktree for a new branch.
git worktree add ../feature-branch feature-branch
Task 24: Remove a worktree.
git worktree remove ../feature-branch