Git出现ssh: connect to host gitee.com port 22: Connection timed out fatal:

文章目录

  • 1.问题所在
  • 2.解决方法

1.问题所在

当在git bash命令窗口里输入完git push origin master命令后出现
出现ssh: connect to host gitee.com port 22: Connection timed out
fatal: Could not read from remote repository.
Git出现ssh: connect to host gitee.com port 22: Connection timed out fatal:_第1张图片

2.解决方法

步骤1:在gitee或者github里复制仓库链接的时候,选择https地址

Git出现ssh: connect to host gitee.com port 22: Connection timed out fatal:_第2张图片
步骤2:输入以下命令移除之前的仓库连接

git remote rm origin

在这里插入图片描述

步骤三:再次进行仓库连接即可成功

git remote add origin https://gitee.com/llhgo/studentmanage.git
 git push origin master

Git出现ssh: connect to host gitee.com port 22: Connection timed out fatal:_第3张图片

你可能感兴趣的:(git,ssh,github)