SargerasWang's Blog

我常常思考为什么鸟儿拥有整片天空,却常常停留在一个地方。然后我问了自己同样的问题。

Rake Deploy 出现Could Not Resolve Host: github.com 的解决方法

今天上午看自己的博客,发现昨晚好像没有deploy,博客好多地方都有问题。

晚上回来,检查,确实有错误,修改完,打算提交,就执行了

1
reke deploy

看到最后显示的是

1
## Github Pages deploy complete

就以为成功了,遂上博客观察,还是没有改变,又去清浏览器缓存,还是没有改变。再次执行

1
rake deploy

这次仔细看了一下console输出

1
2
3
4
## Pushing generated _deploy website
fatal: unable to access 'https://github.com/SagerasWang/sageraswang.github.com.git/': Could not resolve host: github.com

## Github Pages deploy complete

原来如此,访问github.com无法解析了。

这一定是我大GFW的功劳,好吧,幸亏我有goagent.

在shell中执行

1
2
set HTTP_PROXY=http://127.0.0.1:8087
rake deploy

这次ok了,成功deploy!