使用Hexo+GitHub搭建博客踩过的一些坑

最终部署好的博客

1、安装hexo 输入npm install hexo-cli g 出现找不到了如下错误


12.png

只需要删除用户目录下的.npmrc文件即可

2、安装hexo后,初始化博客,出现bash: hexo: command not found
找到hexo的安装目录,
我的是:C:\nodejs\node-global\node_modules\hexo-cli\bin,将此目录新增到系统环境变量path中(注:Administrator改成你自己的账户名)

3、gitment配置参考:
https://imsun.net/posts/gitment-introduction/
4、参考详细的文档:https://blog.csdn.net/AinUser/article/details/77609180

5、Hexo常用命令:
https://hexo.io/zh-cn/docs/commands

6、多环境部署:
您可同时使用多个 deployer,Hexo 会依照顺序执行每个 deployer。

deploy:
- type: git
  repo:
- type: git
  repo:

注意缩进
YAML依靠缩进来确定元素间的从属关系。因此,请确保每个deployer的缩进长度相同,并且使用空格缩进。

你可能感兴趣的:(使用Hexo+GitHub搭建博客踩过的一些坑)