octopress導入 http://blog.glidenote.com/blog/2011/11/07/install-octopress-on-github/
h2. clone
cd ~
git clone git://github.com/imathis/octopress.git octopress
cd octopress
git checkout -b master
h2. rbenvのバージョンが違うと怒られた
.rbenv-version
ってファイルを編集したらコマンド通った
vi .rbenv-version
# 1.9.3-p194 を 1.9.3-p392 に修正
h2. bundle install
bundle install --path vendor/bundle
h3. gitignore修正
vi .gitignore
vendor/bundle
h2. テーマの導入
git clone git://github.com/lucaslew/whitespace.git .themes/whitespace
bundle exec rake install['whitespace']
h2. github pagesの設定
bundle exec rake setup_github_pages
h2. ブログ作成
bundle exec rake generate
h2. デプロイ
bundle exec rake deploy