Skip to content

github 连接超时问题

解决方案一:修改 dns

第一步 查找 github 地址

先查找 github.comgithub.global.ssl.fastly.net 的 ip 地址

ip 查询工具

第二步 配置 host 文件

文件位置:

  • windows: C:\windows\system32\drivers\etc
  • linux: /etc/hosts

修改 host

txt
140.82.112.3 github.com
151.101.1.194 github.global.ssl.fastly.net

第三步 刷新 host 文件

windows

cmd
ipconfig /flushdns     #清除DNS缓存内容。
ps:ipconfig /displaydns #显示DNS缓存内容

linux

sh
$ systemctl restart nscd

解决方案二:使用代理

sh
$ git config --global http.proxy 127.0.0.1:ssrport
$ git config --global https.proxy 127.0.0.1:ssrport
2025( )
今日 8.33%
本周 42.86%
本月 48.39%
本年 4.11%
Powered by Snowinlu | Copyright © 2024- | MIT License