Git解决“ssh:connect to host github.com port 22: Connection timed out”

第一次配置github 的ssh,原来使用过gitee的ssh,才知道他们用的都是一个。

一、拿到SSH Key

我已经有ssh key .位置在 C:\Users\jiang.ssh\id_rsa.pub

二、GitHub添加SSH Key

点击头像setting就可以,我这里已经粘贴了。
Git解决“ssh:connect to host github.com port 22: Connection timed out”_第1张图片

三、验证是否成功

我在桌面右键 git bash here,或cmd也可以,还有一个power shell,我其实都搞不懂区别。

ssh -T git@github.com
//成功会运行结果在这里插入代码片出现类似如下
Hi xiangshuo1992! You've successfully authenticated, but GitHub does not provide shell access.

我的运行

提示: “ssh:connect to host github.com port 22: Connection timed out”

四、解决

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

1 进入~/.ssh下

cd ~/.ssh

2 创建一个config文件(这里我用的vim编辑器)

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

4 保存退出

:wq

5 检查是否成功

ssh -T [email protected]

五、解决后,git clone

Git解决“ssh:connect to host github.com port 22: Connection timed out”_第2张图片
在一个文件夹位置下

git clone git@github.com:sirfuao/vue_shop.git

六、成功了

Git解决“ssh:connect to host github.com port 22: Connection timed out”_第3张图片

你可能感兴趣的:(上班工作,git,ssh,github)