Complete the command to create a new worktree named 'feature' from the branch 'main'.
git worktree add [1] mainThe command git worktree add feature main creates a new worktree named 'feature' based on the 'main' branch, allowing parallel work.
Complete the command to list all existing worktrees.
git worktree [1]The command git worktree list shows all the worktrees currently checked out, helping you see parallel workspaces.
Fix the error in the command to remove a worktree named 'feature'.
git worktree [1] featureThe correct command to remove a worktree is git worktree remove feature, which removes the specified worktree.
Fill both blanks to create a new worktree named 'test' from branch 'dev' and switch to it.
git worktree add [1] [2] && cd [1]
This command creates a new worktree directory 'test' from the 'dev' branch and then changes directory into it, enabling parallel work.
Fill all three blanks to explain how worktrees enable parallel work by creating separate directories, branches, and allowing simultaneous commits.
Worktrees create separate [1], each linked to a [2], allowing [3] commits without interference.
Worktrees create separate directories, each linked to a branch, allowing simultaneous commits without interference. This enables parallel work on different features.