Hexo写作

文章写作

1. 创建草稿

hexo new draft <title>

使用hexo server --draft渲染草稿

2. 将草稿移至文章目录

草稿存在于source/_drafts目录下,当文章草稿完成后,用下面的命令将草稿移至文章目录source/_posts

hexo publish <title>

如一开始不需要草稿,可以直接创建文章hexo new <title>

3. 生成文章页面文件

hexo generate

4. 发布文章

hexo deploy

5. 提交新文章至git

git status
git diff "new_post_file"
git add "new_post_file"
git commit -m "add new post"
git push -u origin master

参考