当前位置:   article > 正文

【git clone时git报错:port 22】解决方案 ssh:connect to host github.com port 22: Connection timed out_git clone ssh

git clone ssh

如题,git使用中突然报错

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

通过查阅各种资料,得知原因可能是由于电脑的防火墙或者其他网络原因导致ssh连接方式 端口22被封锁。

解决方法

一:抛弃ssh连接方式,使用http连接。

git config --local -e
将配置文件的url = git@github.com:username/repo.git一行改为:url = https://github.com/username/repo.git

   
   
  • 1
  • 2
  • 1
  • 2

方法二:如果22号端口不行,那就换一个端口

进入.ssh文件夹

在这里插入图片描述
创建一个config文件

将下面的内容复制进去

Host github.com
User git
Hostname ssh.github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa
Port 443
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

Host gitlab.com
Hostname altssh.gitlab.com
User git
Port 443
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

保存退出

检查是否成功

ssh -T git@github.com

 
 
  • 1
  • 1

在这里插入图片描述

这里要根据它的提示操作,有个地方要输入yes

此时大功告成啦

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/590314
推荐阅读
相关标签
  

闽ICP备14008679号