1

在 Windows 7 上运行我安装了 IIS7 并按照此处的说明进行操作。我已经设法设置 bonobo git 服务器并使用它。我做了一个空的测试仓库,当我尝试使用 git shell 使用命令克隆仓库时

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

(当:hxxp == http)

它熄灭了

git clone hxxp://myhost/Bonobo.Git.Server/test-repo.git 克隆到 'test-repo'... 致命:无法从远程存储库读取。请确保您具有正确的访问权限并且存储库存在。

(当我的主机是本地主机时)我错过了什么吗?我尝试过使用 Win7 和 IIS7 访问权限,但没有成功

4

1 回答 1

0

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
于 2014-12-14T09:21:04.497 回答