github 端口22 超时问题解决

github 端口22 超时问题解决

问题描述

搬了个公司后发现自己的sourcetree 以及 本地命令行在拉取代码或者clone时均报错,根据网友的解决方案,做了个整理

报错信息

复制代码
$ git pull project develop
ssh: connect to host github.com port 22: Connection timed out
fatal: Could not read from remote repository.

解决方案

使用 ssh 443端口

步骤1

测试端口443是否可用 注意必须存在一个 ssh (如无 请使用命令ssh-keygen -t ed25519 -C "your_email@example.com" 生成,并在github ssh设置中添加),以用于测试

在git命令行中敲入

复制代码
ssh -T -p 443 git@ssh.github.com

步骤2

编辑.ssh 下的config文件,如无直接创建即可

复制代码
Host github.com
Hostname ssh.github.com
Port 443

多ssh的配置config例子如下

复制代码
Host github.com
  Hostname ssh.github.com
  Port 443

Host github.com
  HostName ssh.github.com
  Port 443
  IdentityFile C:\Users\Administrator\.ssh\id_ed25519
  PreferredAuthentications publickey

Host github.com
  HostName ssh.github.com
  Port 443
  IdentityFile C:\Users\Administrator\.ssh\id_peter
  PreferredAuthentications publickey

步骤3

不指定端口进行测试,此时你可以通过SourceTree等进行正常访问

复制代码
ssh -T git@github.com
相关推荐
信鸽爱好者5 分钟前
Windows +VM虚拟机安装github服务器
服务器·windows·ubuntu·机器人·github
无限大624 分钟前
为什么"容器化"技术很重要?——从虚拟机到 Docker
后端·github
木卫二号Coding1 小时前
Linux-删除一级目录下子目录-github例子
linux·运维·github
小陈phd2 小时前
Python MCP 工具开发入门:Server、Client 和 LLM 集成
开发语言·python·github
阿里嘎多学长3 小时前
2025-12-29 GitHub 热点项目精选
开发语言·程序员·github·代码托管
逛逛GitHub4 小时前
GitHub 上 10 个令人惊艳的 Agent 开发平台,太顶了。
github
海阔天空094 小时前
Cesium三维地形渲染
vue.js·github
CoderJia程序员甲4 小时前
GitHub 热榜项目 - 日榜(2025-12-29)
ai·开源·llm·github
一个很帅的帅哥6 小时前
GitHub MCP 服务器(共 58 个,按星标数降序)
服务器·github
阿郎_20116 小时前
复用已知的ssh公私钥实现docker的ssh传输
docker·github·ssl