-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.git-commit-template
38 lines (34 loc) · 1.68 KB
/
.git-commit-template
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
37
38
# <[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] : 코드 리팩토링
# [🚧WORKING] : 작업 중인 코드
# [🎨STYLE] : 코드 포맷팅, 세미콜론 누락 수정 등 내부 로직 변경이 없이 코드를 수정한 경우
# [📝DOCS] : README 문서 수정
# [🧪TEST] : 테스트 코드, 리팩토링 테스트 코드 추가
# [🔨CHORE] : 빌드 업무 수정, 패키지 매니저 수정
# [📦️PACKAGE] : 컴파일된 파일 또는 패키지 업데이트 등 의존성 관련 수정
# [🗑️REMOVE] : 코드/파일 삭제
# [🏷️RENAME] : 파일, 폴더명 수정
# [👶🏻INIT] : 프로젝트 초기 설정
# ------------------
# 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
# 본문에 목록을 나타낼때는 "-"로 시작한다.
# ------------------