最近无法通过 ssh 方式 clone github 项目

查看 359|回复 30
AresChang   
可能是墙加厚,可以用这个改一下 host ,速度很快。
https://github.com/521xueweihan/GitHub520
sunny2580839896   
+1
chunqiuyiyu   
在 ~/.ssh/config 中添加如下内容,没有这个文件就新建一个:
```
Host github.com
Hostname ssh.github.com
Port 443
```
我是这样解决的。
XXWHCA   
ssh 代理需要单独配置
```
cat .ssh/config
Host github.com
Hostname ssh.github.com
IdentityFile /Users/xxx/.ssh/id_ed25519
User git
Port 443
ProxyCommand nc -v -x 127.0.0.1:7890 %h %p
```
jonah   
@purplemystic 我之前不配代理 https 和 ssh 都可以访问的,最近感觉墙厚了 ╮(╯_╰)╭
licoycn   
同步一下 hosts 即可: https://github.com/Licoy/fetch-github-hosts
purplemystic
OP
  
@silencetea 按照你给的配置后, 可以生效, 赞
doco   
听说是新加坡的 github 地址有问题, 换美国那边的 vpn 大概率解决问题
purplemystic
OP
  
@doco 不行的, 因为 Copilot 和 ChatGPT 原因, 我一直使用的是美国的
doco   
@purplemystic 看一下你连的 github 的 ip 是哪个吧, 20.205.243.166 这个好像不行, 140.82.113.4 这个应该是没问题的
您需要登录后才可以回帖 登录 | 立即注册

返回顶部