使用hexo搭建github pages。
准备工作
- git一些基本知识,可以看 廖雪峰的Git教程
- 一个github账号
github pages
只需要新建一个repository,名为 {username}.github.io,username为你注册的github账号,然后新建一个页面index.html,写入hello,提交到github中,在页面{username}.github.io中即可显示页面内容。
安装hexo
Requirements
安装hexo
1
| $ npm install -g hexo-cli
|
初始化
1 2 3 4
| $ npm install hexo --save $ hexo init <folder> $ cd <folder> $ npm install
|
Hexo命令
新建一篇文章
1
| $ hexo new "My New Post"
|
More info: Writing
More info: Server
生成静态页面
More info: Generating
自动部署到github上
要使用此命令,首先得安装git部署插件
1
| $ npm install hexo-deployer-git --save
|
然后在_config.yml中添加如下设置:
1 2 3 4 5
| deploy: type: git repo: <repository url> branch: [branch] message: [message]
|
More info: Deployment
如何处处写文章
- 安装git, node.js
- 安装hexo,
npm install -g hexo-cli
- 从github上拉代码,
git clone https://github.com/SogouWebFront/sogou_hexo.git
- 初始化hexo
1 2 3 4
| $ npm install hexo --save $ hexo init <folder> $ cd <folder> $ npm install
|
- 文章md源码在source/_posts/下,使用
hexo new ${post}
新建文章,使用hexo s
启动服务,hexo d -g
提交到github上
- 注意最后将文章源码也提交到线上,
git add *
, git commit -m "${comment}"
, git push origin master
。
参考