Git Convention

feat feature - 기능 추가/수정 등
fix bug fix - 버그 수정
refactor code refactoring - 코드 리팩토링
style formatting, missing semi colons, … - 스타일 변경 (형식, 세미콜론 누락 등)
test when adding missing tests - 테스트
chore maintain - 빌드, 패키지 관련 (업데이트 등)
docs documentation - 문서 수정

예시

feat: add email notifications on new direct messages

fix(api): handle empty message in request body

참고자료

Conventional Commit Messages