问题描述

git push 推送 github 报错如下:

ssh: connect to host github.com port 22: Connection timed out
fatal: Could not read from remote repository.

github 推送报错 ssh: connect to host github.com port 22: Connection timed out 解决-LMLPHP

解决方案

找到 .ssh 文件夹新增 config 配置文件
github 推送报错 ssh: connect to host github.com port 22: Connection timed out 解决-LMLPHP
添加以下配置即可

Host github.com
Hostname ssh.github.com
Port 443

解决验证

使用 ssh -T git@github.com 测试连接

github 推送报错 ssh: connect to host github.com port 22: Connection timed out 解决-LMLPHP
重新推送验证是否成功
github 推送报错 ssh: connect to host github.com port 22: Connection timed out 解决-LMLPHP

开源项目

  • SpringCloud + Vue3 微服务商城
  • SpringBoot 3+ Vue3 单体权限管理系统
01-22 10:00