Jenkins无法从远程git存储库中获取代码

问题描述 投票:0回答:1

我在ec2实例中安装了jenkins。这是我要构建的第一个项目,但出现错误

FailedConsole Output
Started by user nithinroyal
Running as SYSTEM
Building in workspace /var/lib/jenkins/workspace/demo
[WS-CLEANUP] Deleting project workspace...
[WS-CLEANUP] Deferred wipeout is used...
[WS-CLEANUP] Done
using credential github
Cloning the remote Git repository
Cloning repository https://github.com/nithinkota/demo.git/
 > git init /var/lib/jenkins/workspace/demo # timeout=10
ERROR: Error cloning remote repo 'origin'
hudson.plugins.git.GitException: Could not init /var/lib/jenkins/workspace/demo
    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$5.execute(CliGitAPIImpl.java:957)
    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$2.execute(CliGitAPIImpl.java:737)
    at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1105)
    at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1145)
    at hudson.scm.SCM.checkout(SCM.java:505)
    at hudson.model.AbstractProject.checkout(AbstractProject.java:1205)
    at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
    at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
    at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
    at hudson.model.Run.execute(Run.java:1853)
    at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
    at hudson.model.ResourceController.execute(ResourceController.java:97)
    at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Error performing git command: git init /var/lib/jenkins/workspace/demo
    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2379)
    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2302)
    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2298)
    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommand(CliGitAPIImpl.java:1857)
    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$5.execute(CliGitAPIImpl.java:955)
    ... 12 more
Caused by: java.io.IOException: Cannot run program "git" (in directory "/var/lib/jenkins/workspace/demo"): error=2, No such file or directory
    at java.lang.ProcessBuilder.start(ProcessBuilder.java:1048)
    at hudson.Proc$LocalProc.<init>(Proc.java:250)
    at hudson.Proc$LocalProc.<init>(Proc.java:219)
    at hudson.Launcher$LocalLauncher.launch(Launcher.java:936)
    at hudson.Launcher$ProcStarter.start(Launcher.java:454)
    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2365)
    ... 16 more
Caused by: java.io.IOException: error=2, No such file or directory
    at java.lang.UNIXProcess.forkAndExec(Native Method)
    at java.lang.UNIXProcess.<init>(UNIXProcess.java:247)
    at java.lang.ProcessImpl.start(ProcessImpl.java:134)
    at java.lang.ProcessBuilder.start(ProcessBuilder.java:1029)
    ... 21 more
ERROR: Error cloning remote repo 'origin'
Finished: FAILURE

当我添加显示红色错误的存储库URL时,在源代码管理步骤中配置项目时>]

Failed to connect to repository : Error performing git command: git ls-remote -h https://github.com/nithinkota/demo.git/ HEAD

[我在ec2实例中安装了jenkins。这是我尝试构建的第一个项目,但我收到错误信息。FailedConsole输出由用户nithinroyal启动,在工作空间/ var / lib / ...中以SYSTEM身份运行。]

jenkins github jenkins-plugins jenkins-cli
1个回答
0
投票

[检查,是否已安装Jenkins Git插件,如果已在System页面中的Path to Git executable字段中进行了配置。

放入C:\Path\to\Git\bin\git.exe,其中C:\Path\to\Git是您安装Git for Windows的文件夹。

© www.soinside.com 2019 - 2024. All rights reserved.