잡단한것들/잡동사니
깃 커밋 메시지 전략
ekgoddldi
2022. 7. 15. 11:25
- feat : 새로운 기능 추가 (new feature for the user, not a new feature for build script)
- fix : 버그 수정 (bug fix for the user, not a fix to a build script)
- docs : 문서 수정 (changes to the documentation)
- style : 코드 포맷팅, 세미콜론 누락 등, 코드 변경이 없는 경우 (formatting, missing semi colons, etc; no production code change)
- refactor : 코드 리펙토링 (refactoring production code, eg. renaming a variable)
- test : 테스트 코드 작성시 (adding missing tests, refactoring tests; no production code change)
- chore : 현재 코드의 수정이 없는 설정, 빌드 태스트 업데이트, 패키지 매니저 등(프로덕션 코드 변경 X)의 작업이 추가 된 경우 (updating grunt tasks etc; no production code change)
- comment : 필요한 주석 추가 및 변경
- rename : 파일 혹은 폴더명을 수정하거나 옮기는 작업만인 경우
- remove : 파일을 삭제하는 작업만 수행한 경우