github: kex_exchange_identification: Connection closed by remote host

问题描述

bash 复制代码
(base) ➜  test git:(dev) git pull
kex_exchange_identification: Connection closed by remote host
Connection closed by 192.30.255.113 port 22
致命错误:无法读取远程仓库。

解决方案

参照下边文档

https://docs.github.com/en/authentication/troubleshooting-ssh/using-ssh-over-the-https-port

  • 进入config文件
bash 复制代码
(base) ➜  .ssh vi ~/.ssh/config
  • 添加下述配置
bash 复制代码
Host github.com
    Hostname ssh.github.com
    Port 443
    User git
  • 结果如下图
  • 运行如下代码进行验证
bash 复制代码
$ ssh -T git@github.com
> Hi USERNAME! You've successfully authenticated, but GitHub does not
> provide shell access.
  • 如果都没问题,重新git pull自己代码仓库里的代码,发现可以正常拉取,问题至此解决
相关推荐
Smile丶凉轩4 小时前
微服务即时通讯系统的实现(服务端)----(1)
c++·git·微服务·github
pumpkin845146 小时前
GitHub 和 GitLab
gitlab·github
会讲英语的码农8 小时前
Git项目管理
gitee·github
油泼辣子多加9 小时前
2024年11月21日Github流行趋势
github
A洛10 小时前
Vercel 设置自动部署 GitHub 项目
github·webhooks·自动部署·vercel
油泼辣子多加11 小时前
2024年11月22日Github流行趋势
github
和你一起去月球14 小时前
TypeScript - 函数(下)
javascript·git·typescript
我不是程序猿儿14 小时前
【GIT】TortoiseGit的变基(Rebase)操作
git
yyycqupt21 小时前
git使用(一)
git