error: while accessing https://github.com/maoqiu123/HelloWorld.git/info/refs
fatal: HTTP request failed
fatal: HTTP request failed
2018-05-12
修改环境变量
# sudo vim /etc/profile
在最后一行添加
export PATH=/usr/local/git/bin:$PATH
保存后使其立即生效
# source /etc/profile
查看是否安装成功
#git --version
再次执行git clone
插曲三、当使用git clone时SSL conection error,fatal: unable to access : SSL connect error,使用yum update -y nss curl libcurl解决之
总算是把github上的东西检出到本地了。
# sudo vim /etc/profile
在最后一行添加
export PATH=/usr/local/git/bin:$PATH
保存后使其立即生效
# source /etc/profile
查看是否安装成功
#git --version
再次执行git clone
插曲三、当使用git clone时SSL conection error,fatal: unable to access : SSL connect error,使用yum update -y nss curl libcurl解决之
总算是把github上的东西检出到本地了。
2018-04-14
当使用git clone时出现while accessing的错误时。
1)可能是由于git版本太低引起的你只能使用yum remove git将其卸载掉。
2)开始安装
wget获取git
解压下载的文件进入文件目录
执行编译
# make configure
# ./configure --prefix=/usr/local/git --with-iconv=/usr/local/libiconv
# make all doc
# sudo make install install-doc install-html
在此时make all doc出错使用yum install 那些缺的
1)可能是由于git版本太低引起的你只能使用yum remove git将其卸载掉。
2)开始安装
wget获取git
解压下载的文件进入文件目录
执行编译
# make configure
# ./configure --prefix=/usr/local/git --with-iconv=/usr/local/libiconv
# make all doc
# sudo make install install-doc install-html
在此时make all doc出错使用yum install 那些缺的
2018-04-14