jenkins - 错误克隆远程回购'来源'

时间:2016-12-21 17:00:01

标签: git jenkins bitbucket

我已经在我的机器上设置了本地运行的Jenkins服务器。 配置Jenkins作业以克隆BitBucket存储库。还做了以下事情: *最初生成的SSH-Key连接到BitBucket。后来使用username& amp;将其更改为从HTTPS进行克隆已在"凭据"中配置的密码詹金斯的一节 *还在由Jenkins作业创建工作区的文件夹上执行了init。在我的例子中,它是C:\ Jenkins \ jobs \\工作区。

获得以下例外:

ERROR: Timeout after 10 minutes
ERROR: Error cloning remote repo 'origin'
hudson.plugins.git.GitException: Command "C:\Program Files\Git\bin\git.exe     
fetch --tags --progress     
https://<AccountName>@bitbucket.org/<repositoryName>/<projectName>.git 
+refs/heads/*:refs/remotes/origin/*" returned status code -1
:stdout 
:stderr: 
    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:1745)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:1489)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$300(CliGitAPIImpl.java:64)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:315)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$2.execute(CliGitAPIImpl.java:512)
at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1054)
at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1094)
at hudson.scm.SCM.checkout(SCM.java:495)
at hudson.model.AbstractProject.checkout(AbstractProject.java:1278)
at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:604)
at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:529)
at hudson.model.Run.execute(Run.java:1720)
at hudson.maven.MavenModuleSetBuild.run(MavenModuleSetBuild.java:544)
at hudson.model.ResourceController.execute(ResourceController.java:98)
at hudson.model.Executor.run(Executor.java:404)
ERROR: null

1 个答案:

答案 0 :(得分:1)

我成功解决了这个问题。 我当然确定它与git.exe路径有关,我是对的。 当我在git bash中运行以下命令时,它为git.exe提供了不同的路径

$which git
/mingw64/bin/git

在我之前的配置中,我指向位置/ bin / git中的git.exe。