From 615086d60c29d3446a123f652ed2fc72b6174056 Mon Sep 17 00:00:00 2001 From: always0ne Date: Thu, 9 Jul 2020 00:01:38 +0900 Subject: [PATCH] docs: Commit, Pull Request Template MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Commit template는 로컬에서 세팅 필요 - `git config --local commit.template .github/.gitmessage.txt` ## Issue 템플릿은 Settings에서 직접 설정할 것 Resolves: # - See also: # - --- .github/.gitmessage.txt | 14 ++++++++++++++ .github/pull_request_template.md | 14 ++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 .github/.gitmessage.txt create mode 100644 .github/pull_request_template.md diff --git a/.github/.gitmessage.txt b/.github/.gitmessage.txt new file mode 100644 index 000000000..dc43c1172 --- /dev/null +++ b/.github/.gitmessage.txt @@ -0,0 +1,14 @@ +feat: 요약된 메시지 + +feat: 새기능 +fix: 버그픽스 +docs: 문서변경 +style: 코드가 아닌 변경내용(indent, import 수정 등등) +refactor: 리펙토링 코드 +test: 테스트 코드 +chore: 빌드에 관한 변경(코드는 변경없음) + +상세설명 + +Resolves: #해결된 이슈넘버 +See also: #관계된 이슈 \ No newline at end of file diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 000000000..dc43c1172 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,14 @@ +feat: 요약된 메시지 + +feat: 새기능 +fix: 버그픽스 +docs: 문서변경 +style: 코드가 아닌 변경내용(indent, import 수정 등등) +refactor: 리펙토링 코드 +test: 테스트 코드 +chore: 빌드에 관한 변경(코드는 변경없음) + +상세설명 + +Resolves: #해결된 이슈넘버 +See also: #관계된 이슈 \ No newline at end of file