在git jenkins中未找到资源库

ttcibm8c  于 2022-11-20  发布在  Git
关注(0)|答案(3)|浏览(266)

我使用的Jenkins2.64安装了最新的插件。
我试图在jenkins中设置git repo并提供凭据,但提供错误代码128,无法连接仓库。

Cloning repository https://github.com/somerepository.git
 > git init /Users/kumar/.jenkins/workspace/sample # timeout=10
Fetching upstream changes from https://github.com/somerepository.git
 > git --version # timeout=10
using GIT_ASKPASS to set credentials 
 > git fetch --tags --progress https://github.com/somerepository.git +refs/heads/*:refs/remotes/origin/*
ERROR: Error cloning remote repo 'origin'
hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/somerepository.git +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: remote: Repository not found.
fatal: repository 'https://github.com/somerepository.git/' not found

    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:1903)
    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:1622)
    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$300(CliGitAPIImpl.java:71)
    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:348)
    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$2.execute(CliGitAPIImpl.java:545)
    at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1067)
    at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1107)
    at hudson.scm.SCM.checkout(SCM.java:495)
    at hudson.model.AbstractProject.checkout(AbstractProject.java:1212)
    at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:560)
    at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
    at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:485)
    at hudson.model.Run.execute(Run.java:1735)
    at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
    at hudson.model.ResourceController.execute(ResourceController.java:97)
    at hudson.model.Executor.run(Executor.java:415)
ERROR: null
Finished: FAILURE

有人能帮忙吗?
注:对于以前版本的jenkins,在管理jenkins-〉配置中有git部分,我们可以在那里放置我们的git可执行文件。但在新版本的jenkins中没有找到git部分。
编辑:添加的日志

3pvhb19x

3pvhb19x1#

正在从https://github.com/somerepository.git获取上游更改错误:克隆远程存储库'origin'哈德逊时出错。命令“git fetch--tags --progress https://github.com/somerepository.git +refs/heads/:refs/remotes/origin/”返回状态代码128:标准输出:标准错误:remote:未找到存储库。

  • 通常https git的网址末尾不会有.git *。请确认你的网址。我猜你是想访问ssh网址。
11dmarpk

11dmarpk2#

你好,试着让你的Jenkins成为ssh无钥。它的失败是因为它无法获取你的密码进入git。它无法拉取repo。
在你以su - jenkins的身份登录后,为jenkins上的ssh-keygen
复制密钥ssh-rsa.pub并将其粘贴到企业Github设置中
有一个ssh密钥添加选项
粘贴此发布密钥。
给予git仓库的url,在credentials中点击none,并在branch section中指定要拉取的git分支。

rkttyhzu

rkttyhzu3#

这只是表示您的用户ID无效。它可能已挂起,也可能不再处于活动状态。请返回Jenkins作业页面并单击“配置”。选择有效的ID并保存更改。无论如何,您都应该使用服务帐户,而不是个人帐户。
如果你必须使用已经存在的帐户,去你的运营/管理人员那里恢复ID。

相关问题