重装系统后还原hexo
准备工作
- 首先重装系统前将以下文件夹和文件备份好。
- scaffolds、source、themes、.gitignore、_config.yml、package.json
- scaffolds、source、themes、.gitignore、_config.yml、package.json
- 其次在新系统中安装nodejs、npm等基础环境
- 随后将备份好的文件夹和文件替换(可以删除新系统中的对应文件夹和文件)
完成以上文件后将敲以下代码
Butterfly模板为例:
安装pug插件:npm install hexo-renderer-pug hexo-renderer-stylus –save
(npm国内源:–registry=https://registry.npm.taobao.org)
安装abbrlink插件:npm install hexo-abbrlink –save
清理缓存并重新生成:hexo clean && hexo g
如果以下错误(ERROR Deployer not found: git)用此代码解决:npm install hexo-deployer-git –save –registry=https://registry.npm.taobao.org
本地生成预览:hexo clean && hexo s
部署到GitHub:hexo clean && hexo d
如出现404,到GitHub –> arlan300.github.io –> Settings –> GitHub Pages –> Custom domain 输入你的域名。