feat
Commits, that adds or remove a new featurefix
Commits, that fixes a bugrefactor
Commits, that rewrite/restructure your code, however does not change any API behaviour
perf
Commits are special refactor
commits, that improve performancestyle
Commits, that do not affect the meaning (white-space, formatting, missing semi-colons, etc)test
Commits, that add missing tests or correcting existing testsdocs
Commits, that affect documentation onlybuild
Commits, that affect build components like build tool, ci pipeline, dependencies, project version, ...ops
Commits, that affect operational components like infrastructure, deployment, backup, recovery, ...chore
Miscellaneous commits e.g. modifying .gitignore
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