有趣的技术
一,hexo常用快捷键
hexo clean 清除缓存文件 (db.json) 和已生成的静态文件 (public)
hexo g 生成静态文件
hexo s 启动服务器
1 | hexo clean && hexo g && hexo s |
hexo clean 清理缓存
hexo g
hexo d 部署网站
1 | hexo clean && hexo g && hexo d |
新建页面
post 文章 draft 草稿
1 | hexo new page "页面名" |
git config –global user.name “cunko”
git config –global user.email “liu003251@gmail.com“
初始化一个Git仓库
1 | git init |