赞
踩
**方法1:**报上述错误时,输入以下语句:
git config --global http.sslVerify "false"
然后重新尝试输入git 语句。
方法2:(推荐)在原地址前加https://ghproxy.com,如下所示:
git clone https://ghproxy.com/https://github.com/tensorflow/tensorflow
# git clone https://ghproxy.com/<git地址> 注意:git地址前无需加空格
方法3:(推荐)
gitclone.com是一个提供下载缓存的代码下载网站,使用法十分简单,只需要在仓库地址前面加上 gitclone.com,就可以使速度提升几倍 .
例如要克隆qithub上仓库地址 https://github.com/tensorflow/tensorflow.git
操作与方法2类似,只需将地址改为 https://gitclone.com/github.com/tensorflow/tensorflow.git ,
然后在命令行中执行 git clone https://gitclone.com/github.com/tensorflow/tensorflow.git ,
其官网首页为: https://gitclone.com/
# 如原地址为
git clone https://github.com/tensorflow/tensorflow.git
# 修改后的地址:
git clone https://gitclone.com/github.com/tensorflow/tensorflow.git
方法4: 使用 FastGit
FastGit 仅仅是Github 的代理,因此只需要替换远程地址即可。
如下:
git clone https:hub.fastgit.xyz/tensorflow/tensorflow
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。