SIGJE

a blog on sparkly devops.

Octopress Tips to Myself

When building from source to add new posts.

1
2
3
4
5
$ git clone git@github.com:REPO
$ cd REPO
$ git checkout -b source origin/source
$ git clone git@github.com:iennae/iennae.github.io.git _deploy
$ rake new_post["TITLE"]

Write blog entry.

1
2
3
4
5
$ rake generate
$ rake deploy
$ git add .
$ git commit -m 'MESSAGE'
$ git push origin source

For zsh issues for rake new_post.