哈德森混帐克隆错误(Hudson git clone error)

2019-06-26 16:43发布

我在哈德森创建自由风格软件项目。

我想克隆一个公共Git仓库: git的://github.com/bret/watir.git

构建失败,错误信息:

Started by user anonymous
Checkout:workspace / C:\Documents and Settings\Administrator\.hudson\jobs\watir\workspace - hudson.remoting.LocalChannel@1a1f370
Last Build : #4
Checkout:workspace / C:\Documents and Settings\Administrator\.hudson\jobs\watir\workspace - hudson.remoting.LocalChannel@1a1f370
Cloning the remote Git repository
Cloning repository origin
$ git clone -o origin git://github.com/bret/watir.git "C:\Documents and Settings\Administrator\.hudson\jobs\watir\workspace"
Trying next repository
ERROR: Could not clone from a repository
FATAL: Could not clone
hudson.plugins.git.GitException: Could not clone
    at hudson.plugins.git.GitSCM$2.invoke(GitSCM.java:400)
    at hudson.plugins.git.GitSCM$2.invoke(GitSCM.java:358)
    at hudson.FilePath.act(FilePath.java:676)
    at hudson.FilePath.act(FilePath.java:660)
    at hudson.plugins.git.GitSCM.checkout(GitSCM.java:358)
    at hudson.model.AbstractProject.checkout(AbstractProject.java:833)
    at hudson.model.AbstractBuild$AbstractRunner.checkout(AbstractBuild.java:314)
    at hudson.model.AbstractBuild$AbstractRunner.run(AbstractBuild.java:266)
    at hudson.model.Run.run(Run.java:948)
    at hudson.model.Build.run(Build.java:112)
    at hudson.model.ResourceController.execute(ResourceController.java:93)
    at hudson.model.Executor.run(Executor.java:118)

我不认为这个问题是在文件夹的权限,因为我还有一个哈德森工作(与SVN仓库)的作品就好了。

我曾尝试克隆库,以.hudson \工作\的Watir \命令行的工作空间,并能正常工作:

C:\>git clone -o origin git://github.com/bret/watir.git "C:\Documents and Settings\Administrator\.hudson\jobs\watir\workspace"
Initialized empty Git repository in C:/Documents and Settings/Administrator/.hudson/jobs/watir/workspace/.git/
remote: Counting objects: 15203, done.
essing objects: 100% (5307/5307), done.
remote: Total 15203 (delta 10052), reused 14532 (delta 9565)
Receiving objects: 100% (15203/15203), 7.88 MiB | 144 KiB/s, done.
Resolving deltas: 100% (10052/10052), done.

据我所知,哈德森使用,也可以相同的Git可执行文件或同一版本的话,作为命令行一样。

命令行:

C:\>git version
git version 1.6.3.2.1299.gee46c

哈德森:

Started by user anonymous
[workspace] $ cmd /c call C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\hudson9062544454093366628.bat

C:\Documents and Settings\Administrator\.hudson\jobs\watir\workspace>git version
git version 1.6.3.2.1299.gee46c
Finished: SUCCESS

搜索我只找到一个与我的错误信息(页网页哈德森的Git插件远程Windows从克隆 ),它说,这个问题是Git的路径不是。 但在这种情况下, git version不会哈德森运行,对不对?

环境:

  • 微软的Windows Server 2003 R2标准版,Service Pack 2的
  • java的1.6.0_14
  • 哈德森1.316
  • 哈德森GIT插件0.7.3
  • 混帐1.6.3.2.1299.gee46c

Answer 1:

看起来像哈德森git的插件远程Windows从克隆后是正确的。 当我去管理哈德森>配置系统 ,在Git > Git executable部分,有错误There's no such executable git in PATH 。 (如果需要几秒钟的显示页面后,哈德森显示错误)添加C:\Program Files\Git\bin到路径并重新启动哈德森解决了这个问题。



Answer 2:

值得一提的是,如果克隆过程本身有问题,你也将看到这个问题。 我有问题与我的箱子上一个大的库的初始克隆失败的4超过了5倍之一,哈德森不停地抛出这个错误。 验证这一点的一个好方法是问题,它不是哈德森是无法找到的git可执行文件,是手工克隆库到哈德森工作区,然后运行哈德森编译:如果配置哈德森正确生成会成功,报告说,没有任何变化。



Answer 3:

我需要尝试使用ssh git@github.company.co.uk:organisation/repo.git网址,而不是HTTPS https://github.company.co.uk/organisation/repo.git



Answer 4:

Git的插件0.7.3有一些问题与Windows绝对路径时。

尝试使用相对路径来代替。



文章来源: Hudson git clone error
标签: git hudson clone