タグ

jekyllに関するNaskiのブックマーク (2)

  • Jekyll導入メモ

    jekyllを使ってウェブサイトを作ってみた。git over sshでソースを転送して、 gitのpost-updateフックでjekyllを呼んでページを生成する。 Gitリポジトリのセットアップ remoteで作業 2つのリポジトリを作る。 src.git bareなリポジトリ。localからのpush先として使う。 src 普通のリポジトリ。src.gitからpullしてHEADの作業コピーを作るための場所。 まずリポジトリsrc.gitを用意する。 % mkdir src.git % cd src.git % git init --bare % cd - そしてそれをcloneして作業コピー用のリポジトリsrcを作る。 % git clone src.git src src.gitのフックを設定する。pushされた後で呼ばれるのはpost-updateフック。 フック中で、一時的

  • Running Jekyll on Windows – Madhur Ahuja

    Update: If you would like to directly download the portable version of Jekyll. See my new blog post here Update (26/06/14): This article is bit outdated and no longer deemed official instuctions to get Jekyll running on Windows. Please see this article for more updated and authoritative source of instructions. Jekyll can also be made to run on Windows Operating System. This prefer when I am workin

  • 1