Complete the command to create a new branch named 'feature'.
git branch [1]The command git branch feature creates a new branch named 'feature'.
Complete the command to switch to the branch named 'develop'.
git checkout [1]The command git checkout develop switches your working directory to the 'develop' branch.
Fix the error in the command to delete a branch named 'old-feature'.
git branch [1] old-feature-m which renames a branch instead.The option -d deletes the branch named 'old-feature'.
Fill both blanks to create a new branch 'test' and switch to it immediately.
git [1] -b [2]
The command git checkout -b test creates and switches to the 'test' branch.
Fill all three blanks to list all branches and show the current branch with a star.
git [1] [2] [3]
The command git branch -a -v lists all branches and shows the latest commit for each, marking the current branch with a star.