Complete the command to remove a Git worktree named 'feature'.
git worktree [1] featureThe git worktree remove command deletes the specified worktree directory and unregisters it.
Complete the command to clean up references to worktrees that no longer exist.
git worktree [1]The git worktree prune command removes stale worktree references that no longer exist on disk.
Fix the error in the command to remove a worktree located at 'path/to/worktree'.
git worktree [1] path/to/worktreeThe correct command to remove a worktree by path is git worktree remove <path>. Other options are invalid.
Fill both blanks to remove a worktree and then prune stale references.
git worktree [1] feature && git worktree [2]
First, git worktree remove feature deletes the worktree named 'feature'. Then, git worktree prune cleans up stale references.
Fill all three blanks to remove a worktree at 'mytree', prune stale references, and list current worktrees.
git worktree [1] mytree && git worktree [2] && git worktree [3]
This sequence removes the worktree 'mytree', prunes stale references, and then lists all current worktrees.