Failed to connect to repository : Error performing command: git ls-remote -h http://192.168.0.22/fin

时间:2024-04-09 12:46:47

enkins新建项目中源码管理使用Git时遇到如下问题:
Failed to connect to repository : Error performing command: git ls-remote -h http://192.168.0.22/fin
解决:

1.Jenkins服务器上查看git是否已安装及安装位置

git version

whereis git
Failed to connect to repository : Error performing command: git ls-remote -h http://192.168.0.22/fin
2. 打开Jenkins的 主页面 > 系统管理 > 全局工具配置

可以看到错误提示:There’s no such executable git in PATH: /sbin, /usr/sbin, /bin, /usr/bin.
Failed to connect to repository : Error performing command: git ls-remote -h http://192.168.0.22/fin
在出错的地方填入: “whereis git"的地址 + “/bin/git” (如上面"whereis git"的地址为”/usr/local/git",则应该填入 “/usr/local/git/bin/git”) 并保存

  1. 多刷新几次,在源码管理中添加Git 地址,可以发现已经好了