Hexo更换新电脑


访问成功o( ̄▽ ̄)ブ

如果重装电脑,或者想在其他电脑上修改博客

1.从官网Git下载git
2.下载Node.js
3.使用 [email protected]:用户名/用户名.github.io.git clone仓库(默认为hexo分支)o.git clone �ֿ⣨Ĭ��Ϊhexo��֧�� 4.在本地的 博客文件夹 ```下通过Git bash依次执行:

  • sudo npm install hexo-cli -g
  • npm install
  • npm i hexo-renderer-swig (hexo在5.0之后吧swig删除了,需手动安装)
  • npm install hexo-deployer-git --save
  • git config --global user.name "liubei" (你的github用户名)
  • git config --global user.email "[email protected]" (填写你的github注册邮箱)

如果之前整个hexo文件夹你都备份到新电脑上了,以上的第4步只需要执行:

  • sudo npm install hexo-cli -g

5.执行

6.安装deploy-git

  • npm install hexo-deployer-git --save

7.在你的blog目录下找到【_config.yml】文件,打开并找到deploy进行修改。

1
2
3
4
deploy:
type: git
repo: [email protected]:username/username.github.io.git
branch: main

repo中的内容即为github个人主页链接地址,不知道的可以打开仓库查看。

8.最好运行hexo g hexo d

至此,博客部署就完成了!

PS:可能遇到版本不兼容的bug,例如:

Unsupported platform for fsevents@1.0.14: wanted {“os”:”darwin”,”arch”:”any”} (current: {“os”:”win32”,”arch”:”x64”})

解决办法: npm i -f