前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >不用代理, 解决 Github ssh 协议方式超时失败解决方法

不用代理, 解决 Github ssh 协议方式超时失败解决方法

作者头像
老麦
发布2024-01-23 20:43:24
1.3K0
发布2024-01-23 20:43:24
举报
文章被收录于专栏:Go与云原生Go与云原生

不用代理, 解决 Github ssh 协议方式超时失败解决方法

建议点击 查看原文 查看最新内容。

原文链接: https://gist.github.com/Tamal/1cc77f88ef3e900aeae65f0e5e504794

在使用 ssh 协议的时候, 访问超市失败 ssh: connect to host github.com port 22: Connection timed out

代码语言:javascript
复制
$ git clone git@github.com:xxxxx/xxxx.git my-awesome-proj
Cloning into 'my-awesome-proj'...
ssh: connect to host github.com port 22: Connection timed out
fatal: Could not read from remote repository.

$ # This should also timeout
$ ssh -T git@github.com
ssh: connect to host github.com port 22: Connection timed out

但是访问 ssh.github.com 正常

代码语言:javascript
复制
$ # but this might work
$ ssh -T -p 443 git@ssh.github.com
Hi xxxx! You've successfully authenticated, but GitHub does not provide shell access.

配置 .ssh/config 文件

添加一下内容

代码语言:javascript
复制
# # Override SSH settings
# vim ~/.ssh/config
# Add section below to it
# https://gist.github.com/Tamal/1cc77f88ef3e900aeae65f0e5e504794
Host github.com
  Hostname ssh.github.com
  Port 443

重新测试, 发现可以用了。

代码语言:javascript
复制
$ ssh -T git@github.com
Hi xxxxx! You've successfully authenticated, but GitHub does not
provide shell access.

$ git clone git@github.com:xxxxxx/xxxxx.git my-awesome-proj
Cloning into 'my-awesome-proj'...
remote: Enumerating objects: 15, done.
remote: Counting objects: 100% (15/15), done.
remote: Compressing objects: 100% (14/14), done.
remote: Total 15 (delta 0), reused 15 (delta 0), pack-reused 0
Receiving objects: 100% (15/15), 22.90 KiB | 4.58 MiB/s, done.
本文参与 腾讯云自媒体同步曝光计划,分享自微信公众号。
原始发表:2024-01-22,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 熊猫云原生Go 微信公众号,前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 配置 .ssh/config 文件
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档