git create new branch

Shell
$ git checkout -b [name_of_your_new_branch]// create and checkout new branch in one line
git checkout -b new_branch$ git branch [name of branch]//Create a New Branch
git checkout -b [name_of_your_new_branch]
//First Push
git push --set-upstream origin [name_of_your_new_branch]$ git fetch [name_of_your_remote]$ git remote add [name_of_your_remote] [name_of_your_new_branch]
Source

Also in Shell: