利用github+jekyll搭建个人Blog

1880阅读 0评论2013-03-25 zhangzheyuk
分类:其他平台

http://equation85.github.com/blog/blog-with-github-and-jekyll/

参照这篇Bolg,配置遇到问题记录:

1. 首先安装rubygem



我连ruby都没装,因为我是centos系统, sudo yum install ruby,之后按照说明安装总是报
RDoc is not installed: no such file to load -- rdoc/rdoc

搜了一下,应该是还有其他的包没有安装,因此最好Install 的时候

sudo yum install ruby irb rdoc

然后安装rubygem,安装完毕,升级一下

$ gem install rubygems-update  # again, might need to be admin/root
$ update_rubygems              # ... here too

2. 在rh系系统中安装jekyll

http://www.cnblogs.com/TheGrandDesign/articles/2573282.html

3. 对于没怎么接触过Github的童鞋,可以参考这篇文章



4.//------------------------------常见错误-----------------------------------

1.$ git remote add origin git@github.com:WadeLeng/hello-world.git

 错误提示:fatal: remote origin already exists.

 解决办法:$ git remote rm origin

 然后在执行:$ git remote add origin git@github.com:WadeLeng/hello-world.git 就不会报错误了

上一篇:Diameter基础协议摘要
下一篇:在使用jekyll的时候遇到的Git命令