0

我正在尝试使用Bonobo git server 和Jenkins在 windows 上设置持续部署。

Bonobo 服务器在机器 X 上运行良好。表单机器 YI 可以使用我在 Visual Studio 2015 中的 NuGets.git 存储库(在 X 上)进行 git clone、推送、更改、同步……</p>

但是当我尝试设置 Jenkins 使用 Git 插件进行 git clone 时,它​​失败了。所以我想我会尝试从机器 X 上的命令提示符进行 git clone - 但它也失败了(使用包含在 Bonobo 服务器中的 git)

我尝试了以下命令

得到相同的错误
git clone http://masterserver/Bonobo.Git.Server/NuGets.git
git clone http://admin@masterserver/Bonobo.Git.Server/NuGets.git
Cloning into 'NuGets'...
警告:找不到模板/share/git-core/templates
致命:找不到“http”的远程助手

git clone git://masterserver/Bonobo.Git.Server/NuGets.git
克隆到 'NuGets'...
警告:找不到模板 /share/git-core/templates
致命:无法连接到主服务器:
主服务器 [0: fe80::eddd:307e:2856:4c3f%11]: errno=没有错误
masterserver[1: 192.168.1.28]: errno=没有错误

git clone git://admin@masterserver/Bonobo.Git.Server/NuGets.git
克隆到 'NuGets'...
警告:找不到模板 /share/git-core/templates
致命:无法查找 admin@masterserver(端口 9418)(在数据库查找期间发生不可恢复的错误。)

我很迷失她 - 非常欢迎任何帮助和提示

4

1 回答 1

1

由于 Bonobo 托管在 IIS 中,它仅支持FAQ中列出的 HTTP/S 协议,因此只有您的第一次尝试才有效。

至于Unable to find remote helper for 'http'简单的搜索产生以下答案

于 2017-08-27T10:27:55.907 回答