1.
As you saw in the previous section, the
git branch
command creates a branch (among other uses), but it does not change your active branch. The git switch <name>
command switches (i.e. changes) the active branch.(a)
What command will change your active branch to the new feature branch that you created in the previous section?
(b)
Use the
git status
command again now. What part of the output confirms that your feature branch is now the active branch?