1hexo安装
npm install -g hexo
2初始化并下载工程
hexo init
2生成首页
hexo g
3运行下载的hexo
hexo s
4更新文件后工程里
hexo g
hexo s
5更新主题
git clone https://github.com/theme-next/hexo-theme-next themes/next
6清空原来默认的主题
hexo clean
7安装部署
npm install hexo-deployer-git --save
hexo clean && hexo g -d
8码云启动网站
来源:https://www.cnblogs.com/fengzhilun/p/14354398.html |