-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.git-commit-template
More file actions
36 lines (32 loc) · 1.45 KB
/
.git-commit-template
File metadata and controls
36 lines (32 loc) · 1.45 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
36
# <[type]>: <subject>
##### Subject 50 characters ################# ->
# Body Message
######## Body 72 characters ####################################### ->
# Issue Tracker Number or URL (optional) ->
# --- COMMIT END ---
# Type can be
# feat : 새로운 기능 추가
# fix : 버그/오타(typo)/로직 등 코드를 수정한 경우
# refactor: 코드 리팩토링
# style : 코드 포맷팅, 세미콜론 누락 수정 등 내부 로직 변경이 없이 코드를 수정한 경우
# docs : README 문서 수정
# test : 테스트 코드, 리팩토링 테스트 코드 추가
# chore : 빌드 업무 수정, 패키지 매니저 수정
# remove : 코드/파일 삭제
# dep : 패키지 설치/삭제 등 의존성 관련 수정
# etc : 기타
# ------------------
# Remember me ~
# 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
# 본문에 목록을 나타낼때는 "-"로 시작한다.
# ------------------