发布于 

hexo发文

1、 新建一篇文章

1
2
3
在hexo博客目录下,进入Git Bash命令窗口中,输入以下命令:
hexo new "在这里"
在博客目录下的/source/_posts/ 文件夹下,可以看到已经生成了标题为(在这里.md)的博客文件

2、给文章添加分类和标签

1
2
3
4
5
6
7
在(在这里.md)文件中设置tags和categories属性:
title: 在这里
date: 2018-08-02 11:41:10
tags:
- 博客 //多个标签可以这样添加
- hexo
categories: web前端

3、发布到Github上

1
hexo clean && hexo g && hexo d

上传时报错

1
2
3
4
5
6
7
8
9
10
FATAL {
err: Error: Spawn failed
at ChildProcess.<anonymous> (C:\blog\node_modules\hexo-util\lib\spawn.js:51:21)
at ChildProcess.emit (events.js:315:20)
at ChildProcess.cp.emit (C:\blog\node_modules\cross-spawn\lib\enoent.js:34:29)
at Process.ChildProcess._handle.onexit (internal/child_process.js:277:12) {
code: 128
}
} Something's wrong. Maybe you can find the solution here: %s https://hexo.io/docs/troubleshooting.html

解决:在命令行输入以下内容后,重新上传

1
git config --global core.autocrlf false