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
You can recreate your server repository and push from your local branch master to the server master.
mkdir myrepo.git cd myrepo.git git init --bare
git push origin master:master