安装环境
安装git
安装node.js
运行cmd进行安装Hexo
npm install -g hexo
使用git bash 创建hexo目录并初始化
$mkdir hexo
$cd hexo
$hexo init
然后就可以生成网站,启动服务了:
$hexo clean
$hexo generate
$hexo server
在流浪器输入:http://localhost:4000/
_config.yml文件:
deploy:
type: git
repository: https://github.com/WeDox/WeDoX.github.io.git
branch: master
$hexo clean
$hexo generate
$ npm install hexo-deployer-git --save
(如果没有这句,执行下面的语句会出现:ERROR Deployer not found: git)
$ hexo deploy //提交到github,输入https://wedox.github.io/即可
创建一篇新博客:
$ hexo new "我是中国人"
然后到hexo\source\_posts\我是中国人.md使用Markdown语言进行更新,如下
---
title: My Fist Post with hexo
date: 2016-09-25 20:03:25
tags:
---
这是我的第一条博客 [我是hexo的链接](https://hexo.io/)!
## 第一个标题
### 我是子标题
$ hexo new "这一句的背景是一条黑线条"
## 我是第二个标题
More info: [Writing](https://hexo.io/docs/writing.html)
重新生成,然后提交到github
$hexo clean
$hexo generate
$ hexo deploy
网友评论