Complete the command to create a new worktree named 'feature' from the current branch.
git worktree add [1]The git worktree add command requires the path for the new worktree. Here, 'feature' is the new directory name for the worktree.
Complete the command to save your current changes temporarily using stash.
git [1] saveThe git stash save command saves your current changes temporarily so you can switch branches without committing.
Fix the error in the command to apply the latest stash.
git stash [1]The git stash apply command applies the latest stash without removing it from the stash list.
Fill both blanks to create a new worktree for branch 'dev' in folder 'dev-tree'.
git worktree add [1] [2]
The first argument is the folder name for the new worktree, and the second is the branch name to check out there.
Fill all three blanks to stash changes, switch to branch 'test', and apply the stash.
git [1] save && git checkout [2] && git stash [3]
First, stash your changes with git stash save. Then switch to branch 'test'. Finally, apply and remove the stash with git stash pop.