github官网进不去或者网页打不开

前言

今天向博客提交文章的时候,出现了如下的错误,大概的意思就是请确认你是否有权限访问这个仓库,刚开始以为是我的hexo出现了错误,一顿hexo --debug后也没有发现什么异常,后来我就想着查看一下我的github,然后发现无法访问,于是就定位到原因了,无法访问仓库地址。

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

Please make sure you have the correct access rights
and the repository exists.
FATAL Something's wrong. Maybe you can find the solution here: https://hexo.io/docs/troubleshooting.html
Error: Spawn failed
    at ChildProcess.<anonymous> (D:\blog\hexo\node_modules\hexo-util\lib\spawn.js:51:21)
    at ChildProcess.emit (events.js:223:5)
    at ChildProcess.cp.emit (D:\blog\hexo\node_modules\cross-spawn\lib\enoent.js:34:29)
    at Process.ChildProcess._handle.onexit (internal/child_process.js:272:12)

解决办法

修改host文件

Windows 系统位于 C:\Windows\System32\drivers\etc\ 
Android(安卓)系统hosts位于 /etc/ 
Mac(苹果电脑)系统hosts位于 /etc/ 
iPhone(iOS)系统hosts位于 /etc/ 
Linux系统hosts位于 /etc/
绝大多数Unix系统都是在 /etc/

在hosts文件中加入下列IP,保存即可生效

#github
192.30.253.113 github.com

再打开网页即可生效

你可能感兴趣的:(实用工具,github,git)