一、git拒绝连接原因分析
使用git从远程仓库下载代码出现上述的错误是因为使用了proxy代理,所以要解决该问题,核心操作就是要取消代理
二、解决方式
1、查看Linux当前有没有使用代理
通过git的配置文件查看有无使用代理(没有成功) 查询是否使用代理:
git config --global http.proxy
git config --global https.proxy
2、取消代理设置
方式一:通过git取消代理设置
git config --global --unset http.proxy
git config --global --unset https.proxy
方式二:通过系统命令取消代理
unset http_proxy
unset ftp_proxy
unset all_proxy
unset https_proxy
unset no_proxy
我的个人博客地址,欢迎访问 我的CSDN地址,欢迎访问 我的GitHub主页,欢迎访问
标签:git,错误,Gitc,--,global,代理,127.0,proxy,unset From: https://blog.51cto.com/AomanHao/7059312