Creating a New Branch in Git
Branches in Git are created using the branch command. Let's create a new branch called test:
git branch test
This will create a new branch, but you won't be switching to it. In the next lessons, we'll learn how to view the list of current branches and switch between them.
Create a new branch in your Git repository.