Deployer not found: git 에러 해결법

Deployer not found: git 에러

Hexo로 블로깅을 처음 하거나, 새로운 시스템에서 deploy를 하려하면

not found: git``` 에러가 발생하며 GitHub 페이지로 전송이 안되는 경우가 있습니다.
1
2
3
4
5
6
7
이 에러는 보통 Hexo 폴더에 *`hexo-deployer-git`* 이 설치 안되어 있는 상태에서 deploy 를 git으로 시도할시 발생합니다.

---

# 해결법
```bash
$ npm install hexo-deployer-git --save

위의 명령어를 Hexo가 설치된 폴더에 실행 시킵니다.
설치가 다 끝나면 _config.xml 파일을 열고 ‘#deployment’ 부분을 아래처럼 고치면 됩니다.

1
2
3
4
5
6
# Deployment
## Docs: https://hexo.io/docs/deployment.html
deploy:
type: git
repo: https://github.com/your_github_id/your_github_id.github.io.git
branch: master
공유하기