IDEA解决Github连接超时ideaclone failed: unable to access: failed to connect to github.com port 443: timed

出现问题

错误信息
在使用IDEA中的GIT功能拉取小组项目时出现连接超时问题。
通过查询,找到以下两个解决方案。

方案一

https://blog.csdn.net/dashi_lu/article/details/89641778
这个是网上找到的第一个方案,我动手试了并未解决我的问题。不过遇到此问题的同学们可以先试一试。

方案二

WIN+R弹出运行窗口后输入cmd
在cmd中输入ping github.com,试试看能不能连通。
或者在桌面上右键点击git bash here 输入

ssh -T [email protected]  或者  ssh -V [email protected]

此时,出现如下的问题:

ssh: connect to host github.com port 22: Connection timed out

或者cmd上显示连接超时。那么不妨看看这个解决方法,亲测有效。
打开
C:\Windows\System32\drivers\etc下的Host文件
我打开这个文件才发现我修改了配置信息,已经被我添加了红色区域标记的东西。
IDEA解决Github连接超时ideaclone failed: unable to access: failed to connect to github.com port 443: timed_第1张图片
我们要做的就是把多余的东西删去,也就是留下:
IDEA解决Github连接超时ideaclone failed: unable to access: failed to connect to github.com port 443: timed_第2张图片
再重新用IDEA试过重新clone成功拉取Github上的项目,问题解决。
最后,我在查找的过程中发现了一篇IDEA中git的使用教程,蛮详细的,做个记录并一起分享:
https://blog.csdn.net/qq_40563761/article/details/91347443

你可能感兴趣的:(IDEA)