当前位置:   article > 正文

git远程推送报错:ssh:connect to host github.com port 22: Connection timed out_gitlab ssh connect to host cs.glfawu.cn port 22: c

gitlab ssh connect to host cs.glfawu.cn port 22: connection timed out

git远程推送报错:ssh:connect to host github.com port 22: Connection timed out

解决方案

原因是22端口不能用,虽然不知道具体原因是什么,我们直接换个端口就好了

1、首先进入~/.ssh目录下,

cd ~/.ssh
  • 1

3、接着创建一个config文件

vim config
  • 1

4、复制以下内容到config文件中:

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

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
  • 14

5、接着按下shift + :键,输入qw(保存并退出)
6、接着检查一下

ssh -T git@github.com

  • 1
  • 2

如果有提示输入yes或者no,直接输入yes并回车
再试试能不能推送到远程仓库
参考:https://blog.csdn.net/weixin_45637036/article/details/106560217

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

闽ICP备14008679号