uncategorized

Init hexo setting

First of all

You already install hexo then modify _config.yml like this

1
2
3
4
5
6
7
8
9
10
11
12
13
title: imincheol technology blog
subtitle:
description:
author: imincheol
language: en
url: https://imincheol.github.io/
deploy:
type: git
repo: https://github.com/imincheol/imincheol.github.io.git

그러면 정상적으로 자신의 github로 커밋이 된다

1
$ hexo g -d

만약 아래와 같은 메시지가 나타나면

1
ERROR Deployer not found: git

다음의 커맨드를 입력한다

1
$ npm install hexo-deployer-git --save

그리고 다시 배포한다

1
$ hexo g -d
Share