解决Jenkins上git出现的“ERROR: Error fetching remote repo 'origin'”问题

今天对清掉了Jenkins中项目的工作空间,结果构建出现“ERROR: Error fetching remote repo ‘origin‘”问题;网上各种找也没找到解决这个问题的方法。

后来看错误之前是“> git.exe config --local --remove-section credential # timeout=10”,不会是跟密码有关吧!

于是将url改成http://用户名:密码@ip/的格式,git配置改成不使用密码,结果OK了。

解决Jenkins上git出现的“ERROR: Error fetching remote repo 'origin'”问题

时间: 2024-10-17 10:00:21

解决Jenkins上git出现的“ERROR: Error fetching remote repo 'origin'”问题的相关文章

Jenkins报错Error fetching remote repo ‘origin‘真正解决办法

Jenkins build时报错Error fetching remote repo 'origin',网上大部分文章都说是git权限问题,其实并不是,造成这个问题的原因是Jenkins有个工作空间( workspace)的概念,Jenkins build时产生的缓存会保存到工作空间里,我们把缓存清理掉就好,参照截图 原文地址:https://blog.51cto.com/kusorz/2358348

ERROR: Error fetching remote repo 'origin' 错误解决

千万不要慌张,认真看控制台输出 ERROR: Error fetching remote repo 'origin'...... Caused by: hudson.plugins.git.GitException: Command "git config remote.origin.url http://aaaaaaaaaaaaaaa.git" returned status code 255: stdout: stderr: error: could not lock config

解决Jenkins上git出现Timeout的问题

Jenkins上现有的git插件并没有配置超时的选项,因此在clone项目时如果网络差会出现“ERROR: Timeout after 10 minutes”,导致无法继续构建. 网上找到一个解决方法:http://jenkins-ci.361315.n4.nabble.com/Windows-git-plugin-git-client-plugin-problems-td4690288.html 启动Jenkins的时候加上 -Dorg.jenkinsci.plugins.gitclient.

jenkins windows slave 报错ERROR: Error cloning remote repo 'origin'

在slave上是git clone ssh是可以成功的,但是jenkins调用slave节点就报如下错误: ERROR: Error cloning remote repo 'origin' hudson.plugins.git.GitException: Could not init C:\lebo\workspace\repo1 at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$5.execute(CliGitAPIImpl.java:717)

jenkins使用Git为源码管理(windows master && linux slave)

作为一个不太经常总结的人,工作以来碰到过太多问题!往往解决之后没有有效记录,导致再次碰到需要重新查资料解决.现在改变下习惯,努力搞的了技术. 公司最近提倡开源(以前啥都机密,即使开源也没改变多少),代码从SVN迁移至Git管理,这样导致原来记录项目日志的wiki持续集成job需要重新配置.之前的设置为:每分钟检查SVN变化,有变化就执行编译发布.改为Git后,碰到坑坑洼洼,一并列在下面. jenkins的Git插件安装 git plugin,git client plugin,github pl

执行git命令出现 xcrun: error:

xcrun: error: active developer path ("/Applications/Xcode.app/Contents/Developer") does not exist, use xcode-select to change 执行 sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer 即可解决. 执行git命令出现 xcrun: error:

本地Git仓库和远程仓库的创建和关联及github上传(git push)时出现error: src refspec master does not match any解决办法

github上传项目方法: 在你的电脑上装好git Git Bash Here 本地Git仓库和远程仓库的创建及关联大致流程是: 1.初始化这个本地的文件夹为一个Git可以管理的仓库 git init 注意:Git会自动为我们创建唯一一个master分支我们能够发现在当前目录下多了一个.git的目录,这个目录是Git来跟踪管理版本库的,千万不要手动修改这个目录里面的文件,不然改乱了,就把Git仓库给破坏了. 2.将本地的仓库和远程的仓库进行关联 git remote add origin [em

Git出现SSL connect error的解决办法

最近在使用Go开发项目中,因为需要安装一个Package,所以使用了go get命令 ,然后就出现git clone ... SSL connect error的错误: 出现这种错误有可能是nss的版本太低了,需要更新安装下nss,然后使用linux yum安装 安装好后,再次执行相关命令,错误解决. 原文地址:https://www.cnblogs.com/itxiongwei/p/9125077.html

解决IIS7运行ASP提示错误:An error occurred on the server when processing the URL. Please contact the system administrator

原文:解决IIS7运行ASP提示错误:An error occurred on the server when processing the URL. Please contact the system administrator 在WINDOWS7或SERVER2008上安装了IIS7,调试ASP程序时出现以下错误: An error occurred on the server when processing the URL. Please contact the system admini