前言
在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,因而取消代理
git config --global --unset http.proxy git config --global --unset https.proxy