一尘不染

设置Github Jenkins插件时出现“无法连接到存储库”错误

jenkins

将我的存储库位置输入到新作业的“源代码管理> Git>存储库URL”部分时,出现错误。我到处搜索并尝试了许多不同的URL,但均未成功。

错误:

Failed to connect to repository : Error performing command: git ls-remote -h https://github.com/micdoodle8/Crossbow_Mod_2.git HEAD

有任何想法吗?谢谢。


阅读 813

收藏
2020-07-25

共1个答案

一尘不染

您可能需要在 Manage Jenkins- >配置系统-> Git-> Git安装-> Git可执行文件路径中设置git可执行文件的路径

例如,我在Windows中遇到相同的错误。我安装了git Chocolatey,并通过Powershell获得了位置:

Get-Command git.exe | Select Definition

在Unix中,您应该能够:

which git
2020-07-25