linux-pages.com
... arcane linux knowledge collected over the eons, bit by bit ...
1. Here’s how to to create a remote branch in git::
git push origin origin:refs/heads/my_branch
… or even simpler and more straightforward:
git branch my_branch # create branch locally
git push origin my_branch # push it to server
2. To push your changes to the remote branch:
git push […]