欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ssh: connect to host gitlab.com port 22: Connection timed out

程序员文章站 2024-03-14 09:08:40
...

不知为何 gitlab 经常用着用着就出现以下问题:

ssh: connect to host gitlab.com port 22: Connection timed out

解决方法:
在自己的用户目录下找到.ssh/文件夹,在里面创建config文件。

ssh: connect to host gitlab.com port 22: Connection timed out

ssh: connect to host gitlab.com port 22: Connection timed out

在config文件里面添加以下内容:

Host github.com

User git

Hostname ssh.github.com

PreferredAuthentications publickey

IdentityFile ~/.ssh/id_rsa

Port 443

然后在终端执行以下命令:

ssh -T aaa@qq.com

就可以访问gitlab了。

ssh: connect to host gitlab.com port 22: Connection timed out

 

 

 

 

 

相关标签: git