Complete the command to create and switch to a new branch named 'feature'.
git [1] featureThe git checkout -b command creates a new branch and switches to it immediately.
Complete the command to create and switch to a new branch named 'hotfix' using the modern git command.
git [1] -c hotfixThe modern way to create and switch branches is git switch -c branch_name.
Fix the error in the command to create and switch to a new branch named 'release'.
git switch [1] releaseThe correct option to create and switch is -c, not -b with git switch.
Fill both blanks to create and switch to a new branch named 'dev' using the older git command.
git [1] [2] dev
The older command to create and switch is git checkout -b branch_name.
Fill all three blanks to create and switch to a new branch named 'test' using the modern git command.
git [1] [2] [3]
The modern command is git switch -c test to create and switch to 'test'.