我的詹金斯(Jenkins)有问题,设置为“ git”,显示以下错误:
Failed to connect to repository : Command "git ls-remote -h https://person@bitbucket.org/person/projectmarket.git HEAD" returned status code 128:
stdout:
stderr: fatal: Authentication failed
我已经用ssh测试过:
git@bitbucket.org:person/projectmarket.git
这是错误的:
Failed to connect to repository : Command "git ls-remote -h git@bitbucket.org:person/projectmarket.git HEAD" returned status code 128:
stdout:
stderr: Host key verification failed.
fatal: The remote end hung up unexpectedly
我还使用“ SSH密钥”完成了这些步骤。
在詹金斯下登录
sudo su jenkins
将您的github密钥复制到Jenkins .ssh文件夹
cp ~/.ssh/id_rsa_github* /var/lib/jenkins/.ssh/
重命名键
mv id_rsa_github id_rsa
mv id_rsa_github.pub id_rsa.pub
但仍然无法在jenkins中使用git仓库。
感谢帮助!。