Error when cloning new repo

0
Hello. I just installed GitStack on a winwdows 2003 server. I tried to do a quick test from the same windows and clone a test repository and I got the following error:

S:\qq>git clone http://192.168.0.80:8080/GitTest.git
Cloning into 'GitTest'...
Username for 'http://192.168.0.80:8080': rupio
Password for 'http://rdagum@192.168.0.80:8080':
fatal: http://192.168.0.80:8080/GitTest.git/info/refs not found: did you run git update-server-info on the server?

The repository is new so it’s empty. Am I missing something?
Thanks in advance
Rupio
asked October 3, 2012
rupio
0

5 Answers

0
It must be some firewall issues. Could you try to do a git clone in local? If is works, make sure that the port 8080 is open in your firewall.
0
That's actually the local server. I tried using local host ip and I get the same thing:

S:\qq>git clone http://127.0.0.1:8080/GitTest.git Cloning into 'GitTest'... Username for 'http://127.0.0.1:8080': rupio Password for 'http://rupio@127.0.0.1:8080': fatal: http://127.0.0.1:8080/GitTest.git/info/refs not found: did you run git up date-server-info on the server?

Also, firewall on that server is off. I have a web service running on port 80 and it works fine. I can access it from everywhere with no problem. rupio
rupio
0
0
i got the exact same problem. still trying to resolve it..
led
0
0
How to create a new repository in git ?? Kindly help
suresh
0
0
ok, I am using a fresh install, Window 2003. Looking through Q&A i found the solution. In your repo root, create a empty file named: git-daemon-export-ok   That fixed it for me

Your Answer

Please login to post questions.