1. 安装
条件: ruby gem 注意版本,同时建议使用国内的镜像
gem install jekyll bundler
2. 创建网站
jekyll new my-awesome-site
3. 启动
cd my-awesome-sitebundle exec jekyll serve
4. 基本启动命令
$ jekyll build#=>当前文件夹中的内容将会生成到./_site 文件夹中。$ jekyll build --destination <destination>#=>当前文件夹中的内容将会生成到目标文件夹<destination>中。$ jekyll build --source <source>--destination <destination>#=>指定源文件夹<source>中的内容将会生成到目标文件夹<destination>中。$ jekyll build --watch#=>当前文件夹中的内容将会生成到./_site 文件夹中,#查看改变,并且自动再生成。
5. 参考地址
http://jekyllrb.com/http://jekyllcn.com (中文)