下面介绍一下使用github pages创建博客的步骤
1、登录后系统,在github首页,点击页面右下角「New Repository」,创建一个项目repository
2、在本地将这个项目clone下来
$ git clone github.com/user/repository.git
# Clone our repository
Cloning into 'repository'...
remote: Counting objects: 2791, done.
remote: Compressing objects: 100% (1225/1225), done.
remote: Total 2791 (delta 1722), reused 2513 (delta 1493)
Receiving objects: 100% (2791/2791), 3.77 MiB | 969 KiB/s, done.
Resolving deltas: 100% (1722/1722), done.
3、创建一个gh-pages分支
$ git checkout --orphan gh-pages
# Creates our branch, without any parents (it's an orphan!)
Switched to a new branch 'gh-pages'
echo "My Page" > index.html
git add index.html
git commit -a -m "First pages commit"
git push origin gh-pages
需要说明的是:
现在 Jekyll 有很多好看的模板,可以到jekyllthemes.org 上寻找自己喜欢的。将其clone到本地,然后添加到我们创建的项目进行修改就可以了。
完成之后,直接访问http(s)://<username>.github.io/<projectname>就可以看到效果了。
参考文章:
Creating Project Pages manually