How to push an existing branch into a new repo using git?
You first have to add the new remote repository:
git remote add newrepo https://github.com/name.git
Then you could push your branch (yournewbranch) to this repository:
git push newrepo yournewbranch:master
If the master branch already exists you might force the update or push to an other branch on the new repository