Failed to connect to chromium.googlesource.com port 443: Operation timed out

一、现象

连接着,网页上可以直接打开网站,但是使用terminal 执行git clone https://chromium.googlesource.com/xxxx时,

报错:Failed to connect to chromium.googlesource.com port 443: Operation timed out

二、原因

这是因为terminal没有走代理的流量,

三、方法

使用git config --global http.proxy "localhost:port",设置代理。

port是端口号,根据不同的不一样,我这里使用的是lartern,端口是50321。

四、操作

执行 git config --global http.proxy "localhost:50321"

成功!

你可能感兴趣的:(第三方)