the new begin

This is the first time for me using Hexo to write Technology Blog.

In the document which U want to creat new Blog, click righten mouse button:

1
2
3
[email protected] MINGW64 /e/spyderCodes/MyBlog/hexo
$ hexo new "The New Begin"
INFO Created: E:spyderCodesMyBloghexosource_postsThe-New-Begin.md

other command config

1
2
3
4
5
6
7
8
9
10
11
12
13
14
hexo help
hexo init #初始化一个目录
hexo new "postName" #新建文章
hexo new page "pageName" #新建页面
hexo generate #生成网页,可以在 public 目录查看整个网站的文件
hexo server #本地预览,'Ctrl+C'关闭
hexo deploy #部署.deploy目录
hexo clean #清除缓存,**强烈建议每次执行命令前先清理缓存,每次部署前先删除 .deploy 文件夹**
hexo n == hexo new
hexo g == hexo generate
hexo s == hexo server
hexo d == hexo deploy

Everything right!