Ubuntu 13.10下使用Github和Octopress搭建个人博客

2014-05-01
#Unix #Blog

1.[环境准备]

  • 安装git、ruby和octopress
$ sudo apt-get install git ruby ruby-dev
$ git clone git://github.com/imathis/octopress.git octopress
$ cd octopress
$ sudo gem install bundler
$ rbenv rehash
$ bundle install
$ rake install

2.注册[github]

注意

  • 用户名和自己建的网址要相同;

  • 格式:用户名/用户名.github.io

  • 另外,[用户名.github.com格式正慢慢替换]

3.连接github和octopress

$ rake setup_github_pages
$ rake generate
$ rake deploy
        可能出现问题:解决方案:
        $ cd _deploy
        $ git pull origin master
        $ git push --force origin master
        $ cd ..
        $ rake deploy

$ git add .
$ git commit -m 'your message'
$ git push origin source

4.发布

$ rake new_post["title"]
$ rake generate
$ rake watch
$ rake preview
$ git add .
$ git commit -m 'your message'
$ git push origin source
$ rake generate
$ rake deploy