欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

码云仓库 jenkins Error performing command: git ls-remote -h

程序员文章站 2024-02-03 18:58:40
...

码云仓库 jenkins Error performing command: git ls-remote -h

 jenkins 码云仓库一直无法连接

 

jenkins Error performing command: git ls-remote -h

解决:

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

 

  git version

  whereis git

在出错的地方填入: "whereis git"的地址 + "/bin/git" (如上面"whereis git"的地址为"/usr/local/git",则应该填入 "/usr/local/git/bin/git") 并保存。
路劲:不能只填git

坑了一晚上 终于找到原因了

 

附上SSH连接操作:

填好要部署的git项目源码
码云仓库 jenkins Error performing command: git ls-remote -h

记得码云的仓库要用ssh链接
然后会提示没**,点添加去添加shh**

码云源码管理**生成

生成公钥,私钥(私钥在后文查找打开填入到jenkins中,不要复制公钥

ssh-****** -t rsa 
  • 1

输入三个回车后就能生成
码云仓库 jenkins Error performing command: git ls-remote -h

获取公钥

cat /root/.ssh/id_rsa.pub
  • 1

打开码云项目,添加公钥
码云仓库 jenkins Error performing command: git ls-remote -h

然后将公钥复制在这里,点添加
码云仓库 jenkins Error performing command: git ls-remote -h
打开私钥

cat /root/.ssh/id_rsa
  • 1

把私钥复制到jenkins的
码云仓库 jenkins Error performing command: git ls-remote -h

码云仓库 jenkins Error performing command: git ls-remote -h

码云仓库 jenkins Error performing command: git ls-remote -h

 

相关标签: 码云