Github 正常访问但是ping不同也无法进行git操作

Github 正常访问但是ping不同也无法进行git操作

原因:在git push 的时候 发现一直push不上去。

shell 复制代码
$ git push interview master
ssh: connect to host github.com port 22: Connection timed out
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

网站可以正常访问,但是主机ping却ping不通

shell 复制代码
C:\Users\26611>ping github.com

正在 Ping github.com [20.205.243.166] 具有 32 字节的数据:
请求超时。
请求超时。
请求超时。
请求超时。

20.205.243.166 的 Ping 统计信息:
    数据包: 已发送 = 4,已接收 = 0,丢失 = 4 (100% 丢失),

经过查询资料可以修改将github ip 添加到hosts 文件中

github动态ipwww.github.com - GitHub · Build and ship software on a single, collaborative platform · GitHub

win10 hosts 文件位置 如下图

可以ping通

shell 复制代码
C:\Users\26611>ping github.com

正在 Ping github.com [140.82.112.4] 具有 32 字节的数据:
来自 140.82.112.4 的回复: 字节=32 时间=291ms TTL=45
来自 140.82.112.4 的回复: 字节=32 时间=430ms TTL=45
来自 140.82.112.4 的回复: 字节=32 时间=299ms TTL=45
来自 140.82.112.4 的回复: 字节=32 时间=318ms TTL=45

140.82.112.4 的 Ping 统计信息:
    数据包: 已发送 = 4,已接收 = 4,丢失 = 0 (0% 丢失),
往返行程的估计时间(以毫秒为单位):
    最短 = 291ms,最长 = 430ms,平均 = 334ms

git操作可以正常操作了

shell 复制代码
$ git push interview master
Enumerating objects: 25, done.
Counting objects: 100% (25/25), done.
Delta compression using up to 12 threads
Compressing objects: 100% (22/22), done.
Writing objects: 100% (22/22), 386.20 KiB | 1.69 MiB/s, done.
Total 22 (delta 10), reused 0 (delta 0), pack-reused 0
remote: Resolving deltas: 100% (10/10), completed with 3 local objects.
To github.com:hnsqls/interview.git
   afbfadb..a5d5746  master -> master
相关推荐
Leinwin4 小时前
微软开源GitHub Copilot Chat,AI编程领域迎新突破
microsoft·github·copilot
爱莉希雅&&&6 小时前
shell编程之awk命令详解
linux·服务器·git
baiyu337 小时前
成为git砖家(12): 看懂git合并分支时冲突提示符
git
草梅友仁8 小时前
草梅 Auth 与 AI 开发心得 | 2025 年第 27 周草梅周报
github·ai编程·视觉设计
wu_aceo11 小时前
将本地项目提交到Gitee
git·gitee·提交·本地提交·上传git
qianmoQ11 小时前
GitHub 趋势日报 (2025年07月02日)
github
A5资源网15 小时前
cloudflare配合github搭建免费开源影视LibreTV一个独享视频网站 详细教程
github
mortimer15 小时前
从零到一:构建一个 Chatterbox-TTS API 服务
开源·github·ai编程
真智AI16 小时前
利用 Claude Opus 4 自动化 GitHub 工作流:从安装到实战详解
运维·自动化·github
寻月隐君19 小时前
Rust 网络编程实战:用 Tokio 手写一个迷你 TCP 反向代理 (minginx)
后端·rust·github