https://www.conventionalcommits.org/ko/v1.0.0/
angular/CONTRIBUTING.md at 22b96b96902e1a42ee8c5e807720424abad3082a · angular/angular
[Git] 규칙적인 Commit 메세지로 개발팀 협업하기👾
git config --global commit.template .gitmessage
# <type>(<scope>): <subject>
##### Subject 50 characters ################# -> |
# Body Message
######## Body 72 characters ####################################### -> |
# Issue Tracker Number or URL
# --- COMMIT END ---
# Type can be
# feat : new feature
# fix : bug fix
# perf : performance improvement
# build : dependency or build system change
# ci : CI configuration and scripts
# refactor: refactoring production code
# style : formatting, missing semi colons, etc; no code change
# docs : changes to documentation
# test : adding or refactoring tests; no production code change
# chore : updating grunt tasks etc; no production code change
# ------------------
# 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
# ------------------
A Simplified Convention for Naming Branches and Commits in Git
유형/내용으로 함
예시) feature/input, feature/gantt, fix/fcfs
[Github] Pull Request를 통해 코드리뷰(Code Review)하는 법