jeffsui / jeffsui.github.io

pinghailinfeng's blog main website
http://jeffsui.github.io
7 stars 5 forks source link

hexo Failed to connect to github.com port 443: Timed out #76

Open jeffsui opened 4 years ago

jeffsui commented 4 years ago

【问题描述】 接近新年,貌似github被墙了。 我博客的代码也无法同步到github了。

Failed to connect to github.com port 443: Timed out

【解决方法】 使用代理,并且执行下面的配置

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

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

重新执行 hexo d,部署成功

Unequaled804 commented 4 years ago

感谢感谢

yipliu commented 3 years ago

我设置完了代理显示:Failed to connect to 127.0.0.1 port 1080: Connection refused

Zhang21 commented 3 years ago

可以不用代理,将hexo _config.yml里的git地址由https://github.com/xxx修改为ssh git@github.com:xxx/xxx也可以。

WUTONK commented 2 years ago

感谢,部署成功了

WUTONK commented 2 years ago

如果不成功的话看看自己的代理端口再试试

Iridescent-zhang commented 2 years ago

把1080改成代理的CMD端口成功了

codefoxs commented 2 months ago

对的,比如我用的V2ray,代理端口是10809,就输入

git config --global http.proxy http://127.0.0.1:10809
git config --global https.proxy http://127.0.0.1:10809

可见下图:

image

当然可能也要和洋葱浏览器一样关闭流量嗅探?最好是关掉吧

image

liliaoyuan commented 1 month ago

解决,其实我很好奇,为什么用hexo去连接github不能用了,还要改proxy。 我直接git 本地完全没有问题。按理说都是ssh 应该没啥区别吧