Unable to access ‘xxx.github.git/‘: Failed to connect 或 Ping github.com超时问题的解决方法
1. 先ping通github.com(无法访问大概是访问的ip地址就不对)1.1 先打开cmd窗口(win+R输入cmd后回车),看是否ping的通github.com
ping github.com https://i-blog.csdnimg.cn/direct/fe0b76d25fce4b8c91e31e9d24310550.png
1.2 ping不通的解决
①假如ping不通,查看cmd上显示ping时访问的ip;
// 上面会有显示实验ping到的ip(这个ip大概是错的)
https://i-blog.csdnimg.cn/direct/5e613eb00653431e955cfa4d49ecc50d.png
②然后在这个网站上搜刮github.com的正确ip地址(这个地址好像不停在变?所以不能直接cv网上教程里的ip),对比和cmd上的地址;
To:【My IP | IP Address Tools | IP Geolocation | Website Traffic Checker】
③若差别,则将查到的github.com的正确ip地址写进hosts文件最后一行。Reference:【一步步教你修改Windows当地hosts文件,轻松修改域名指向!_windows修改hosts-CSDN博客】
// hosts文件本机路径:
C:\Windows\System32\drivers\etc\hosts
// hosts文件权限修改
右键hosts文件 > 属性 > 在/通例/中将"只读"取消掉
右键hosts文件 > 属性 > 在/安全/中编辑"权限"中的修改,勾选为允许
https://i-blog.csdnimg.cn/direct/352661bd3c554f72908e0eb3b202c1ca.png https://i-blog.csdnimg.cn/direct/044743258fe0475dbc31a2ce8f2daa9f.png
// 直接用记事本打开,修改为以下格式:
127.0.0.1 github.com
https://i-blog.csdnimg.cn/direct/067a1b18cce44d2a86a388cc96b7974b.png
// 增补:假如hosts文件为空,直接cv下面文本到hosts文件即可(正常情况下,系统的hosts文件除了说明信息外,只包含“127.0.0.1localhost”这一段现实内容,大家都一样),再在后面修改github.com与ip的映射
# Copyright (c) 1993-1999 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
# 102.54.94.97 rhino.acme.com # source server
# 38.25.63.10 x.acme.com # x client host
127.0.0.1 localhost
2. 解决连接不上github或连接超时的问题:
reference:【完美解决 git 报错 “fatal: unable to access ‘https://github.com/.../.git‘: Recv failure Connection was rese-CSDN博客】
2.1 取消 Git 的代理设置:
git config --global --unset http.proxy
git config --global --unset https.proxy
3. 这样就可以正常通过HTTPS方式把github上项目clone下来了!
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页:
[1]