0


解决github拉取代码时访问失败

拉代码时报错:

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

解决方案一:

将代码克隆或拉取路径由git@改为https://即可,但对网络环境有要求。

解决方案二:(推荐)

根据github官方建议将22端口改为443端口(https://help.github.com/en/github/authenticating-to-github/using-ssh-over-the-https-port)

1.先切换到~/.ssh/路径下,window为C:\Users{用户名}.ssh下,再创建全名为config的文件

文件内容为

Host github.com
Hostname ssh.github.com
Port 443

2.保存后运行ssh -T git@github.com命令看,是否配置成功。期间有可能会提示更新文件信息,全选yes或y

标签: 经验分享 git github

本文转载自: https://blog.csdn.net/qq_21467113/article/details/128361148
版权归原作者 没有刺的仙人掌 所有, 如有侵权,请联系我们删除。

“解决github拉取代码时访问失败”的评论:

还没有评论