【开发专题_03】unable to access ‘https://github.com/deviantony/docker-elk.git/‘: Failed connect to github

2024-03-04 17:14:38 浏览数 (1)

前言

在CentOs克隆别人的repo的时候,出现:fatal: unable to access ‘https://github.com/deviantony/docker-elk.git/’: Failed connect to github.com:443; Connection refused。

解决方案

tips:这其实是一个代理的问题,git的无法代理http/https,因而取消代理

代码语言:javascript复制
git config --global --unset http.proxy

git config --global --unset https.proxy

0 人点赞