-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitmessage
More file actions
35 lines (31 loc) · 1.32 KB
/
.gitmessage
File metadata and controls
35 lines (31 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# <type>: <subject>
# 제목(subject)은 50자 이내로 작성해주세요
# Body Message(본문 내용)
# 본문 내용은 72자 이내로 작성해주세요
# Issue Tracker Number or URL
# 같이 볼만한 이슈나, url이 있으면 함께 적어주세요
# <EX> Resolves: #123, See also: #456, #789
# --- COMMIT END ---
# Type can be
# feat : 새로운 기능 추가
# fix : 버그 수정
# docs : 문서 수정
# style : 코드 포맷팅, 세미콜론 누락, 코드 변경이 없는 경우
# refactor : 코드 리펙토링
# test : 테스트 코드, 리펙토링 테스트 코드 추가
# chore : 빌드 업무 수정, 패키지 매니저 수정
# ------------------
# 기타 규칙
# Capitalize the subject line
# 제목줄은 대문자로 시작한다.
# Use the imperative mood in the subject line
# 제목줄은 명령어로 작성한다.
# Do not end the subject line with a period
# 제목줄은 마침표로 끝내지 않는다.
# Separate subject from body with a blank line
# 본문과 제목에는 빈줄을 넣어서 구분한다.
# Use the body to explain what and why vs. how
# 본문에는 "어떻게" 보다는 "왜"와 "무엇을" 설명한다.
# Can use multiple lines with "-" for bullet points in body
# 본문에 목록을 나타낼때는 "-"로 시작한다.
# ------------------