いろいろ参考にしながらGithub Pagesを作ってみました。
参考にしたページ
【何番煎じ】OctopressとGitHub Pagesを使用したブログの構築手順
GithubとOctopressでモダンな技術系ブログを作ってみる
途中、引っかかったのでメモ。
初めて bundle exec rake deploy
を実行したとき、こんなエラーが出た。
$ bundle exec rake deploy
## Deploying branch to Github Pages
## Pulling any updates from Github Pages
cd _deploy
warning: no common commits
remote: Counting objects: 17, done.
remote: Compressing objects: 100% (15/15), done.
remote: Total 17 (delta 0), reused 0 (delta 0)
Unpacking objects: 100% (17/17), done.
From github.com:tiibun/tiibun.github.io
* [new branch] master -> origin/master
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
See git-pull(1) for details
git pull <remote> <branch>
If you wish to set tracking information for this branch you can do so with:
git branch --set-upstream-to=origin/<branch> master
...
そういうわけで、メッセージの通り、
cd _deploy
git branch -u origin/master master
を実行し、再度 deploy することで無事成功。