Jenkins报错Error cloning remote repo 'origin'
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Jenkins报错Error cloning remote repo 'origin'相关的知识,希望对你有一定的参考价值。
参考技术A 输出 ERROR: Error cloning remote repo \'origin\'
这行报错只能说明是git有问题,其他没什么有用的信息。
浏览器中 Ctrl+F 查找 ERROR ,提示No such file or directory。怀疑git路径设置有问题
Jenkins配置git的绝对路径
系统管理--->全局工具管理--->git
重新构建问题还是没解决
Jenkins配置了2个节点,但是只有master安装了git,很有可能任务被调到slave上执行所以报错
Jenkins--->node--->构建历史 看到之前的任务都在此节点,此节点又没有安装Jenkins所以报错
git clone报错error: RPC failed; curl 18 transfer closed with outstanding read data remaining
具体错误信息如下图:
error: RPC failed; curl 18 transfer closed with outstanding read data remaining
fatal: The remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed
这个错误产生的原因是时间太久,资源太大。
基于此,第一种考量即扩大缓存区。即在命令行输入:
git config --global http.postBuffer 524288000
然而这对我并没有用。
第二种可能是你网速太慢,导致运行失败。
因此我们可以输入:
git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999999
问题解决,果然是因为我的网速太慢。??
当然,这只对我的问题有效,并不一定所有人的问题都是一样的。此外,还有通过设置浅层clone和ssh替换https的方式。
以上是关于Jenkins报错Error cloning remote repo 'origin'的主要内容,如果未能解决你的问题,请参考以下文章
Jenkins Error cloning remote repo 'origin', slave node
jenkins报错:Problem accessing /jenkins/. Reason: HTTP ERROR 404
git clone 远程仓库报错error setting certificate verify locations
小知识:springCloudConfigServer连接git报错:.c.s.e.MultipleJGitEnvironmentRepository : Error occured cloning
git clone报错error: RPC failed; curl 18 transfer closed with outstanding read data remaining