全栈笔记

github 推送超时

2022-12-05  本文已影响0人  小贤笔记

报错:

Failed to connect to github.com port 443 after 21089 ms: Timed out

ssh: connect to host github.com port 22: Connection refused

解决:

扩展

  1. 设置代理
git config --global http.proxy 'http://127.0.0.1:[端口]' 
git config --global https.proxy 'http://127.0.0.1:[端口]'
  1. 查看代理
git config --global --get http.proxy
git config --global --get https.proxy
  1. 取消代理
git config --global --unset http.proxy
上一篇下一篇

猜你喜欢

热点阅读