Git Strategy - Hi-Fi-Club/FE GitHub Wiki

1. 🐱 Commit Convention

Commit Type Description
feat 새로운 기능 추가 (a new feature)
fix 버그 수정 (a bug fix)
docs 문서 수정 (changes to documentation)
style 코드 포맷팅, 세미콜론 누락, 코드 변경이 없는 경우
(formatting, missing semi colons, etc; no code change)
refactor 코드 리펙토링 (refactoring production code)
test 테스트 코드, 리펙토링 테스트 코드 추가
(adding tests, refactoring test; no production code change)
chore 빌드 업무 수정, 패키지 매니저 수정
(updating build tasks, package manager configs, etc; no production code change)

2. 🐶 Example Commit Convention

  • 예시 ► [#이슈번호] 커밋타입 : 커밋메시지)
    [#28] feat : TargetButton 추가
⚠️ **GitHub.com Fallback** ⚠️