创建新Jenkins作业时出错:无法连接到存储库:状态码128

时间:2016-06-14 03:32:10

标签: git jenkins git-stash

我是Jenkins的新手,我正在尝试使用Web客户端创建Jenkins工作。它显示以下错误:

  

无法连接到存储库:命令“git ls-remote -h https://user.name@atlstash.corp.bayadv/scm/qa/qa-auto-framework-selenium.git HEAD”返回状态码128:   stdout:stderr:错误:访问https://user.name@atlstash.corp.bayadv/scm/qa/qa-auto-framework-selenium.git/info/refs时   致命:HTTP请求失败

我的STASH网址:https://user.name@atlstash.corp.bayadv/scm/qa/qa-auto-framework-selenium.git

我尝试在命令提示符下执行相同的命令,它工作正常。在此之前必须发出以下命令:export GIT_SSL_NO_VERIFY=true

我的用户具有推/拉访问权限。

我见过一些使用下面的URL,我很困惑何时使用ssh标签。 SSH://git@atlstash.corp.cmz/icc/adapter-derivation-individual.git

enter image description here

如何解决此问题?

1 个答案:

答案 0 :(得分:1)

通过SSH克隆Git存储库,您可以像这样指定ssh:// URL:

$ git clone ssh://user@server/project.git

或者您可以使用较短的类似scp的SSH协议语法:

$ git clone user @ server:project.git