我正在尝试配置存储库: https://github.com/javpaw/game-of-life
使用git插件进入jenkins的工作,但是当我放入存储库的地址时: git@github.com:javpaw /游戏的-life.git
源代码管理 - > git - > repository Url我收到了这个错误:
无法连接到存储库:命令“/ usr / bin / git ls-remote -h git@github.com:javpaw / game-of-life.git HEAD“返回状态码128: stdout:stderr:未指定协议未指定协议
(ssh-askpass:18881):Gtk-WARNING **:无法打开显示:: 0.0主机 密钥验证失败。致命:远程端意外挂断
我在github中找到了这个问题:Why Git fail to connect to local repository with Jenkins (bad config file)?
但没用,因为我正在使用Ubuntu 12.04
我该如何解决这个问题?
感谢。
答案 0 :(得分:9)
尝试使用完整的网址,使用https而不是ssh:
https://github.com/javpaw/game-of-life
您也可以尝试只读地址:
git://github.com/javpaw/game-of-life.git
但在这两种情况下,重要的是指定协议(https://
或git://
)