git create branch in new repository code example
Example 1: git create branch
$ git checkout -b [name_of_your_new_branch]
Example 2: git create branch
$ git checkout -b iss53
Switched to a new branch "iss53"
Example 3: git create new repo from branch
$ git push https://github.com/accountname/new_repo.git +old_branch:master