git push to different remote branch

C++
# To remove the exist origin
git remote remove origin

# And then add new origin master URL
git remote set-url origin git://new.url.here

Follow me on GITHUB/bilalahmedkhatri$ git push <remote> <branch>git push -u origin localBranch:remoteBranchToBeCreated

Source

Also in C++: