当前位置:   article > 正文

Git问题:解决“ssh:connect to host github.com port 22: Connection timed out”_git 报错ssh:connect to host

git 报错ssh:connect to host

操作系统 Windows11
使用Git IDEA
连接方式:SSH

今天上传代码出现如下报错:ssh:connect to host github.com port 22: Connection timed out
在这里插入图片描述
再多尝试几次,依然是这样。

解决

最终发现两个解决方案:(二选一)
方法一: 抛弃ssh连接方式,使用http连接。(我试了一下,对于我来说没有用)
操作方法:
输入命令:
git config --local -e
将配置文件的url = git@github.com:username/repo.git
一行改为:url = https://github.com/username/repo.git
在这里插入图片描述

方法二: 如果22号端口不行,那就换一个端口
操作方法:
1.进入~/.ssh下
cd ~/.ssh
2.创建一个config文件
vim config
3.编辑文件内容:

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

4.保存退出

5.检查是否成功
ssh -T git@github.com
这里要根据它的提示操作,有个地方要输入yes
出现: Hi 什么什么的 就是成功了

大功告成,这时候再试试git push,已经可以提交了!

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

闽ICP备14008679号