git clone出现 fatal: unable to access ‘https://github.com/...'的解决办法(亲测有效)

在开启shadowsocks的前提下,手动配置git的代理。git客户端输入如下两个命令就可以了。

1
2
git config --global http.proxy http://127.0.0.1:1080
git config --global https.proxy http://127.0.0.1:1080

然后取消代理

1
2
git config --global --unset http.proxy 
git config --global --unset https.proxy

通常情况用这种方法解决即可

参考链接