add branch to remote code example
Example 1: git new branch push to remote
git push -u origin <branch>
Example 2: add remote branch git
git remote add github git://github.com/jdoe/coolapp.git
git fetch github
Example 3: 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