create new branch git command line in master branch code example
Example 1: git create new branch from current
git checkout -b topic/newbranch
Example 2: create a branch command
$ git remote add [name_of_your_remote] [name_of_your_new_branch]
git checkout -b topic/newbranch
$ git remote add [name_of_your_remote] [name_of_your_new_branch]