Yesterday, I posted a question on how to clone a Git repository from one of my machines to another, How can I \'git clone\' from another machine?.
I am now
For me working solution is:
ON REMOTE:
git checkout -b some_tmp_name
ON LOCAL:
git push
git checkout master git branch -d some_tmp_name
But this is not the real solution it's just workaround.