bonobo, can't access repo on localhost

1.3k views Asked by At

Running on Windows 7 I've installed IIS7 and followed the instructions here. I've managed to setup the bonobo git server and use it. I made an empty test repo, and when I tried cloning the repo using git shell using the command

git clone hxxp://myhost/Bonobo.Git.Server/test-repo.git

(when: hxxp == http)

it put out

git clone hxxp://myhost/Bonobo.Git.Server/test-repo.git Cloning into 'test-repo'... fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists.

(when myhost is localhost) Am I missing something? I've tried to play with the Win7 and IIS7 access rights and it didn't work

1

There are 1 answers

1
Gaku Ueda On

Bonobo serves git repositories hosted with it via http protocol.

I believe the following should work (http instead of hxxp).

git clone http://myhost/Bonobo.Git.Server/test-repo.git

If it doesn't work try:

git clone http://myhost/test-repo.git