Complete the code to create a new branch named 'feature'.
git branch [1]The command git branch feature creates a new branch called 'feature'.
Complete the command to switch to the 'feature' branch.
git [1] featureThe command git checkout feature switches your working directory to the 'feature' branch.
Fix the error in the command to merge 'feature' into 'main'.
git [1] featureThe correct command to combine changes from 'feature' into 'main' is git merge feature while on 'main' branch.
Fill both blanks to create and switch to a new branch named 'bugfix'.
git [1] -b [2]
The command git checkout -b bugfix creates and switches to the 'bugfix' branch in one step.
Fill all three blanks to delete a local branch named 'oldfeature'.
git [1] -[2] [3]
The command git branch -d oldfeature deletes the local branch named 'oldfeature'.
