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

hexo d命令报错 ERROR Deployer not found: git

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

问题描述

我已经在站点配置文件中写入了:

deploy:
  type: git
  repo: [email protected]:lanlan2017/lanlan2017.github.io.git  # Github pages地址
  branch: master

但是执行,hexo d报错:

ERROR Deployer not found: git

解决方案

这是因为没安装hexo-deployer-git插件,输入下面的插件安装就好了:

npm install hexo-deployer-git --save

然后在使用Hexo -d命令就可以推送了。

本文链接: hexo d命令报错_ERROR Deployer not found_git