Hexo 로 글 작성하는 순서

글생성

1
hexo new post "hexo-new-post-process"

source/_posts/ 폴더 안에 hexo-new-post-process.md 라는 파일이 생성된다
생성되는 내용은 scffolds/post.md 의 내용을 그대로 가져와서 생성해준다

글내용작성

source/_posts/hexo-new-post-process.md
1
2
3
4
5
6
7
8
9
10
---
title: Hexo 작성하는 순서
toc: true
date: 2021-03-30 08:14:40
tags:
- hexo
categories:
- hexo
---

title, tags, categories 를 글에 맞춰서 작성해준다

그리고 글 본문을 markdown 문법으로 작성해 준다

github page 에 블로그 배포

추가된 글만 github page 로 배포해준다

1
2
3
4
## 추가 내용만 배포할 때
npm run deploy
## 전체 내용을 재배포 할 때
npm run deployall

github 에 원본글 저장

private 로 설정한 repository 에 원본글을 저장해 둔다
나는 blog 라는 repository 를 private 로 설정해서 거기에 원본글을 저장해두고 있다

1
2
3
4
5
6
7
## git remote -v
## origin https://github.com/skyksit/blog.git (fetch)
## origin https://github.com/skyksit/blog.git (push)

git add .
git commit -m "Add Post"
git push