Failed to receive SOCKS4 connect request ack. 解决方法

转载自:http://www.chenlongyu.com/article/id/35

在此记录主要方便自己查看。

事件背景:开了socket5网络代理,git clone返回上述错误。

关了ss客户端后仍然不行:

fatal: unable to access 'https://github.com/whqee/whqee.github.git/': Failed to connect to 127.0.0.1 port 1080: 拒绝连接

原因:根据error,我ss客户端的代理用的是socket5,git的https使用的是socket4, 设置git的代理为socket5就好了。

于是:

git config --global http.proxy 'socks5://127.0.0.1:1080' 

    htt处直接按tap补全(我执行时无https选项),设置完立刻生效。

你可能感兴趣的:(git)