Octopress 設定問題

這兩天使用octopress時遇到了一些問題,有簡單google解決也有亂試之下解決

  • 想產生新的文章時出現
1
You have already activated rake 10.1.0, but your Gemfile requires rake 0.9.6. Using bundle exec

google之下很單純,只要修改你的Gemfile
本來是

1
gem 'rake', '~> 0.9.6'

改成以下即可,不過老實說我自己的版本什麼時候吃到10.0我也沒印象

1
gem 'rake', '~> 10.0'
  • rake deploy時出現
1
2
src refspec master does not match any
error src refspec master does not match any. error failed to push some refs to

一開始google時網路大部份的文章都是說你的project repo還沒有任何commit,只要加個README commit即可。 但我怎麼試都不行而且明明我的project己經用了一陣子了後來終於發現原來是我的git沒有local master branch。 原因是我之前手動把_deploy目錄砍過的樣子,理論上在你的_deploy目錄打git branch應該要出現* master 在根目錄底下則是出現* source
後來的解決方法就是重設github page

1
rake setup_github_pages

Comments