Hudson配置git进行构建失败:Error cloning remote repo 'origin'
软件版本
- hudson-3.2.1
- git 1.9.2
在hudson中配置git,如图
path to Git executable 这项还配置过
C:Program Files (x86)Gitbin
C:Program Files (x86)Gitbingit.exe
都报同样的错误。
创建一个job,源码配置如下
运行构建时报错
Started by user anonymous Cleaning the workspace because project is configured to clean the workspace before each build. Checkout:workspace / C:WindowsSystem32configsystemprofile.hudsonjobsJob1workspace - hudson.remoting.LocalChannel@13fbb47 Using strategy: Default Checkout:workspace / C:WindowsSystem32configsystemprofile.hudsonjobsJob1workspace - hudson.remoting.LocalChannel@13fbb47 Cloning the remote Git repository Cloning repository origin ERROR: Error cloning remote repo 'origin' hudson.plugins.git.GitException: Could not clone https://git.oschina.net/yufeng217/GitTest.git at hudson.plugins.git.GitAPI.clone(GitAPI.java:255) at hudson.plugins.git.GitSCM$3.invoke(GitSCM.java:1063) at hudson.plugins.git.GitSCM$3.invoke(GitSCM.java:1008) at hudson.FilePath.act(FilePath.java:793) at hudson.FilePath.act(FilePath.java:775) at hudson.plugins.git.GitSCM.gerRevisionToBuild(GitSCM.java:1008) at hudson.plugins.git.GitSCM.checkout(GitSCM.java:777) at hudson.model.AbstractProject.checkout(AbstractProject.java:1550) at hudson.model.AbstractBuild$AbstractRunner.checkout(AbstractBuild.java:607) at hudson.model.AbstractBuild$AbstractRunner.run(AbstractBuild.java:518) at hudson.model.Run.run(Run.java:1493) at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:44) at hudson.model.ResourceController.execute(ResourceController.java:82) at hudson.model.Executor.run(Executor.java:137) Caused by: hudson.plugins.git.GitException: java.lang.NullPointerException at hudson.plugins.git.GitAPI$1.invoke(GitAPI.java:248) at hudson.plugins.git.GitAPI$1.invoke(GitAPI.java:235) at hudson.FilePath.act(FilePath.java:793) at hudson.FilePath.act(FilePath.java:775) at hudson.plugins.git.GitAPI.clone(GitAPI.java:235) ... 13 more Caused by: java.lang.NullPointerException at org.eclipse.jgit.transport.TransportHttp.connect(TransportHttp.java:477) at org.eclipse.jgit.transport.TransportHttp.openFetch(TransportHttp.java:306) at org.eclipse.jgit.transport.FetchProcess.executeImp(FetchProcess.java:136) at org.eclipse.jgit.transport.FetchProcess.execute(FetchProcess.java:122) at org.eclipse.jgit.transport.Transport.fetch(Transport.java:1111) at org.eclipse.jgit.api.FetchCommand.call(FetchCommand.java:130) at org.eclipse.jgit.api.CloneCommand.fetch(CloneCommand.java:178) at org.eclipse.jgit.api.CloneCommand.call(CloneCommand.java:125) at hudson.plugins.git.GitAPI$1.invoke(GitAPI.java:242) ... 17 more Trying next repository FATAL: Could not clone repository hudson.plugins.git.GitException: Could not clone repository at hudson.plugins.git.GitSCM$3.invoke(GitSCM.java:1074) at hudson.plugins.git.GitSCM$3.invoke(GitSCM.java:1008) at hudson.FilePath.act(FilePath.java:793) at hudson.FilePath.act(FilePath.java:775) at hudson.plugins.git.GitSCM.gerRevisionToBuild(GitSCM.java:1008) at hudson.plugins.git.GitSCM.checkout(GitSCM.java:777) at hudson.model.AbstractProject.checkout(AbstractProject.java:1550) at hudson.model.AbstractBuild$AbstractRunner.checkout(AbstractBuild.java:607) at hudson.model.AbstractBuild$AbstractRunner.run(AbstractBuild.java:518) at hudson.model.Run.run(Run.java:1493) at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:44) at hudson.model.ResourceController.execute(ResourceController.java:82) at hudson.model.Executor.run(Executor.java:137)
求指点!!
-----------------
感谢@Zoker 的答案!
我已经改成 git@git.oschina.net:yufeng217/GitTest.git
不过,又出现一个新问题。在构建时一直处于等待状态,如图
@Zoker 请再指点下!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(9)
我也遇到了同样的问题,ssh key均配置正常 本机通过git都能够正在连接;通过window命令行启动tomcat 没有问题代码可以从git服务器上下载;但只要配置以服务模式启动就提示类似 “com.jcraft.jsch.JSchException: UnknownHostKey:”这样的错误。
恳求指点一二。在此先谢过各位。
你工作区下载代码下来没有。。?我的工作区有代码。。但还是没有成功。。
引用来自“Zoker”的评论
你先ssh -T git.oschina.net 建立一下信任
你先ssh -T git.oschina.net 建立一下信任
引用来自“Zoker”的评论
我们git不支持ip访问哦,hostname直接填写git.oschina.net keyfile直接就是你生成的id_rsa.pub,不用写username和pw,有问题在这问也一样,我随时在线:)
我们git不支持ip访问哦,hostname直接填写git.oschina.net keyfile直接就是你生成的id_rsa.pub,不用写username和pw,有问题在这问也一样,我随时在线:)
引用来自“Zoker”的评论
你的sshkey配置好没?
你的sshkey配置好没?
私有项目,https无权限,建议使用ssh方式。
PS:我喜欢这种提问风格,使用背景、方式、错误异常一目了然。