欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

搭建 hexo,在执行 hexo deploy 后,出现 error deployer not found:github 的错误

程序员文章站 2022-04-15 17:34:43
...

hexo 更新到3.0之后,deploy的type 的github需要改成git

改了之后执行npm install hexo-deployer-git --save

然后再部署试试

 


官网说明: https://hexo.io/zh-cn/docs/deployment.html

 

 

部署Hexo 提供了快速方便的一键部署功能,让您只需一条命令就能将网站部署到服务器上。

$ hexo deploy

在开始之前,您必须先在 _config.yml 中修改参数,一个正确的部署配置中至少要有 type 参数,例如:

deploy:
  type: git

 您可同时使用多个 deployer,Hexo 会依照顺序执行每个 deployer。

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

 

Git

安装 hexo-deployer-git

$ npm install hexo-deployer-git --save

 修改配置。

deploy:
  type: git
  repo: <repository url>
  branch: [branch]
  message: [message]

 

参数 描述
repo 库(Repository)地址
branch 分支名称。如果您使用的是 GitHub 或 GitCafe 的话,程序会尝试自动检测。
message 自定义提交信息 (默认为 Site updated: {{ now("YYYY-MM-DD HH:mm:ss") }})