I setup an Ubuntu server with openssh and git, nothing else is on there. It is a VM on my LAN. I created a dir under home dir called sites, in there is my main site where I want to push to. Ran these commands:
mkdir -p mysite.git
cd mysite.git
git init --bare
Then from my workstation I ran:
git remote add origin steve@10.0.0.15:sites/mysite.git
git push origin master
It seemed to push it with no errors, however when I browse the dirs on the git server I can't locate any of the files. Am I missing something?