准备工作
1. github账号, 这是我的github账号主页,在这个网站注册一个账户 欢迎star https://github.com/wangyalijas.
2. node, 用来生成静态页面的 到Node.js官网下载相应平台的最新版本,一路安装即可。 node.js http://nodejs.org/en/.
3. 安装hexo,本人是Mac系统,其他系统的朋友这部分可以看官网教程。 hexo官网 https://hexo.io/zh-cn/docs/index.html.
开始
安装
$ sudo npm install -g hexo
测试
$ hexo
创建仓库
在你的以github.io结尾的仓库中创建blog文件夹并进入
初始化
$ hexo init
修改_config.xml 修改相关信息
title: 王二爷
subtitle: 前端小菜鸟的进阶之路
description: 前端小菜鸟的进阶之路
author: Jasmine
language: zh-CN
timezone:
底部也要修改
deploy:
type: git
repo: https://github.com/wangyalijas/wangyalijas.github.io.git
启动本地服务
$ hexo server
此时在本地打开http://localhost:4000
本地就会看到
github账号
git
$ npm install hexo-deployer-git --save
编译html
$ hexo g
上传github
$ hexo d
新建目录
$ hexo 测试目录