http://www.docin.com/p-888648541.html
以上是同一篇文章:GitHub+markdown+jekyll打造完美个人博客
本文主要介绍以下几个内容:
1、使用githbu创建自己的博客
2、将博客域名映射到自己的域名
3、使用 jekyll+markdown写作
一、使用github创建自己的博客
具体可参考https://pages.github.com/
1、在github上创建一个repository,名称为username.github.com的形式,如lujinhong.github.com
2、下载github for mac : https://pages.github.com/#setup-in-desktop,第一次运行时会提示输入github的账户信息
3、点击github for mac左上角的+号,然后选择clone,将刚才创建的repository clone到本地。
4、选择你喜欢的编辑器,在刚才clone到本地的目录下创建index.html,文件内容为:
<!DOCTYPE html>
<html>
<body>
<h1>Hello World</h1>
<p>I'm hosted with GitHub Pages.</p>
</body>
</html>
5、打开github for mac,会发现changes那里变成了1 changes,填入comment,然后commit to master。
6、此时文件已经commit到本地库,然后unsynced那里变成了1 unsynced,点击右上角的sync,就会将内容同步到github。
7、打开页面,username.github.io,就可看到你刚才写的页面:
大功告成。
二、将博客映射到自己的域名
参考https://help.github.com/articles/adding-a-cname-file-to-your-repository/
1、到万网去购买域名,如lujinhong.com
2、在github repository根目录下新建一个叫CNAME的文件,内容如下:
lujinhong.com
当然可以是blog.lujinhong.com等二级域名,但不能有前面的http,www等前缀,也不能有/,而且文件名必须大写。
可以在github页面上直接创建文件,也可以使用github for mac等工具。
3、下一步需要设置lujinhong.com指向lujinhong.github.io。到万网去设置域名解析,内容如下:
CNAME | blog | 默认 | lujinhong.lofter.com | -- | 10分钟 | 修改|暂停|删除|备注 | ||
CNAME | * | 默认 | lujinhong.lofter.com | -- | 10分钟 | 修改|暂停|删除|备注 | ||
CNAME | www | 默认 | lujinhong.lofter.com | -- | 10分钟 | 修改|暂停|删除|备注 |
好,完成了,等待几分钟,
访问lujinhong.github.io,会自动跳转到www.lujinhong.com
或者直接访问www.lujinhong.com
来源:https://www.cnblogs.com/lujinhong2/p/4654344.html