create branch in new remote repo git code example
Example 1: add remote branch git
git remote add github git://github.com/jdoe/coolapp.git
git fetch github
Example 2: create new remote branch
git checkout -b <new-branch-name> #Create new branch locally
git push <remote-name> <new-branch-name> #Create new branch remotely