问题描述 我已经在站点配置文件中写入了: deploy: type: git repo: git@github.com: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命令就可以推送了。