用 Github + Jekyll 写博客

下面介绍一下使用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'


4、添加内容并且push到远程

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

Git 笔记:用 Github + Jekyll 写博客



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值