hexo博客迁移到另一台电脑
主要步骤:
原来的电脑备份(用git push到github)
在新的电脑上安装hexo
npm install -g hexo
在新的电脑(此处为MacOS)git clone, 此时应该两个branch(master和publish,分别对应网页的数据和markdown file等源数据)都有
进入目录,切换到publish这一branch
cd ... git checkoout publish
依次安装:
npm install npm install hexo-deployer-git --save npm install hexo-generator-feed --save npm install hexo-generator-sitemap --save # 额外的包辅助图片上传的包 npm install https://github.com/xcodebuild/hexo-asset-image --save
检查是否成功:
# hexo clean && hexo g OR hexo clean; hexo g hexo clean hexo g
20210203 update
由于更换了butterfly的主题,因此需要添加:
npm install hexo-renderer-pug hexo-renderer-stylus --save
# 搜索用的
npm install --save hexo-algolia
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.