[updated 2015.10.30] The followings ways for deploying posts is deprecated. Refer to deploying octopress for details. But if you knows things this post descripbes, you will have better understanding of octopress.

[updated 2015.09.13] Github has two kind of pages: user/orgnization pages and project pages (gh-pages).

Currently, I am using the user/orgnization pages deployed by octopress. This is recommended, due to the easy deployment.

If you are using the project pages (gh-pages), the following references may be help.

How to get started

Refer to “一步步在GitHub上创建博客主页”.

Categories and tags

I tried the this one. It works well.

Jekyll debugging

I didn’t try the debugger yet.

[updated 2015.10.30] The following way is deprecated, and octopress way is prefered. But the To make the post searchable by Google part is still in use.

Contents:

The first two sections are only for my project pages (gh-pages) GitBlogs, and currently in cotopress blog, we have other new simpler ways to do these things. See Migrate Blog to Octopress.

Description

This post is not for how to deploy the environment of writing posts in github pages, but how to use the environment you deployed before.

Read on →

1
2
3
4
5
6
7
8
Function.prototype.clone = function() {
    var that = this;
    var temp = function temporary() { return that.apply(this, arguments); };
    for( key in this ) {
        temp[key] = this[key];
    }
    return temp;
};