5. gihub推送代码超时问题解决方案

一灰灰blogShellGitgithub约 131 字小于 1 分钟

推送代码到github时,直接超时失败,提示信息如下

ssh: connect to host github.com port 22: Connection timed out
fatal: Could not read from remote repository.

解决方案:

vim ~/.ssh/config


# 添加下面的内容
Host github.com
  Hostname ssh.github.com
  Port 443

对于非mac/linux系统,即win而言,需要再 c\用户\.ssh\config 文件中添加上面的内容,如果这个文件不存在,新建一个

Loading...