I logged into my server, and created a git repo:
(reference: http://kb.mediatemple.net/questions/1594/Using+Git)
So I created a folder:
blah.git
I then did:
git --bare init
I then went into the hooks folder and changed the permissions on the post-update.
Now locally on windows, I tried this:
git clone http://git.example.com/blah.git
and got this message:
initialized empty git in e:/gitTest/blah/.git/ fatal: http://git.example.com/blah.git/info/refs not found, did you run git update-server-info on the server?
Well I did run that command on the server. And it seems the file info/refs does exist, but doing a cat on it shows that it is empty.
am I missing a step?