使用octopress的一下关键性要点
执行bundle绑定rake版本
- bundle exec rake new_post[‘title’]
- title里大可以包含空格
- bundle exec rake new_post[‘title’]
本地review
- bundle exec rake preview
生成
- bundle exec rake generate
提交
- 管理员模式的命令行和cygwin下的git
- bundle exec rake deploy
创建文章别忘记备份源文件
git add source/_post/new_post
git commit -m “update source : new_post”
win下deploy的一些关键性细节
set LC_ALL=zh_CN.UTF-8
- 多少次跌在这个坑里,win的默认使用gbk编码,同时console默认显示的也是gbk编码
生成的markdown文件请务必保证是utf-8无bom编码
- 又是一个坑.
更新系统享受新特性
- git pull octopress master