0%

Hello World

Hello world

God say

1
Hello world

To Me


Common Command Hexo use

always use it under the root directory of the blog

1
2
3
4
5
6
7
8
9
hexo new "postName"      # 新建文章
hexo new page "pageName" # 新建页面
hexo g # 生成静态页面至public目录 generate
hexo s # 开启预览访问端口(默认端口4000,'ctrl + c'关闭server)server
hexo d # 部署到GitHub deploy
hexo h # 查看帮助 help
hexo v # 查看Hexo的版本 version
hexo clean # 清除缓存文件db.json和已生成的静态文件public
hexo clean && hexo g # 常用hexo更新命令