当前位置: 首页 > 工具软件 > Github.js > 使用案例 >

解决Github:fatal:unable to access ‘https://github.com/.../.git‘:Could not resolve host:github.com

苗康平
2023-12-01

1.问题:在Github上clone资源时发生:fatal: unable to access ‘https://github.com/…/.git’: Could not resolve host: github.com 错误;提示无法解析主机github.com;

2.原因:出现该错误是因为使用了proxy代理,所以要解决该问题,核心操作就是要取消代理;

3.查询:通过git配置文件查看是否使用代理:git config --global http.proxy

通过查询系统环境有没有使用代理:env|grep -I proxy

4.解决:通过git取消代理:

  • git config --global --unset http.proxy
  • git config --global --unset https.proxy

通过系统命令取消代理:(可以根据自己查询的代理信息对应进行取消)

  • unset http_proxy
  • unset ftp_proxy
  • unset all_proxy
  • unset https_proxy
  • unset no_proxy
 类似资料: