Git 版本导致 clone 故障

Posted 小怪兽的技术博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git 版本导致 clone 故障相关的知识,希望对你有一定的参考价值。


问题描述:

git clone 报错如下:

Initialized empty Git repository in /root/project_php/.git/
error: The requested URL returned error: 401 Unauthorized while accessing http://tone.verru.cn:88/project_php.git/info/refs

fatal: HTTP request failed

解决方法:

带着问题网上走一圈,查到资料说是 git 版本问题,建议升级到 1.8.3 以上。

shell > git --version
git version 1.7.1

# 好吧,那就升级。

shell > yum -y remove git
shell > yum -y install perl cpio autoconf tk zlib-devel libcurl-devel openssl-devel expat-devel gettext-devel perl-ExtUtils-MakeMaker

shell > cd /usr/local/src
shell > wget https://www.kernel.org/pub/software/scm/git/git-2.10.0.tar.gz
shell > tar zxf git-2.10.0.tar.gz
shell > cd git-2.10.0
shell > autoconf
shell > ./configure
shell > make
shell > make insntall

# 建议不要 ./configure; make; make install ,出问题不好排查

shell > echo "PATH=$PATH:/usr/local/bin/" >> /etc/profile; source /etc/profile

shell > git --version
git version 2.10.0

# 再来克隆,发现正常。

shell > git clone http://tone.verru.cn:88/project_php.git

过程中小问题:

1、未安装 perl-ExtUtils-MakeMaker 报错如下:

/usr/bin/perl Makefile.PL PREFIX=/usr/local INSTALL_BASE=‘‘ --localedir=/usr/local/share/locale
Cant locate ExtUtils/MakeMaker.pm in @INC (@INC contains: /usr/local/lib64/perl5 /usr/local/share/perl5 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5 .) at Makefile.PL line 3.
BEGIN failed--compilation aborted at Makefile.PL line 3.
make[1]: *** [perl.mak] 错误 2
make: *** [perl/perl.mak] 错误 2

2、未安装 expat-devel 报错如下:

git clone: fatal: Unable to find remote helper for http

# 如果是 https 应该是未安装 libcurl-devel ,建议按照文档都装上。

以上是关于Git 版本导致 clone 故障的主要内容,如果未能解决你的问题,请参考以下文章

GitGit 分支管理 ( 克隆远程分支 | 克隆 master 分支 git clone | 查看远程分支 git branch -a | 克隆远程分支 git checkout -b )(代码片段

git clone 故障 fatal could not create work tree dir

git clone复制远程代码覆盖非空目录

如何管理在每个 git 版本中添加私有代码片段?

git clone从网络上拷贝一份源代码,过几天,想更新一下代码,如何操作?

Git的纯命令操作,Install,Clone , Commit,Push,Pull,版本回退,撤销更新,分支的创建/切换/更新/提交/合并,代码冲突