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
命令就可以推送了。