I've set up a git repo via ssh on an Ubuntu box I'm using as a media center/backup server.
the steps I took were:
cd repos
git init <repoName>
cd <repoName>
git config --bool core.bare true
I've been able to successfully push and pull from my desktop and laptop via TortoiseGit, however a git pull via SSH returns:
fatal: /usr/lib/git-core/gitpull cannot be used without a working tree.
I'm very new to terminal/ssh so any help would be greatly appreciated!
git init --bare myrepoto save a step there. – Andrew Marshall Dec 19 '11 at 18:43