I need to create a new branch in local. I want to know how to create a new git branch using command in CMD.
The git command is git checkout -b <your branch name> Once you have created the git branch in local you have to push that branch to the origin. git push origin <branch name>
git checkout -b <your branch name>
git push origin <branch name>