how to add local 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
git push -u origin <branch>
git remote add github git://github.com/jdoe/coolapp.git
git fetch github