git commit message convention example
- build
- Build related changes (eg: npm related/ adding external dependencies)
- 빌드 관련 변경 사항(예: npm 관련/외부 종속성 추가)
- chore
- A code change that external user won't see (eg: change to .gitignore file or .prettierrc file)
- 외부 사용자가 볼 수 없는 코드 변경(예: .gitignore 파일 또는 .pretierc 파일로 변경) -> 쓸데없는 것들 변경
- feat
- A new feature
- 새로운 기능
- fix
- A bug fix
- docs
- Documentation related changes
- 문서 관련 변경 사항
- rf or refactorA code that neither fix bug nor adds a feature. (eg: You can use this when there is semantic changes like renaming a variable/ function name)
- rf 또는 refactor 버그를 수정하거나 기능을 추가하지 않는 코드. (예: 변수/함수 이름 변경과 같은 의미론적 변경이 있을 때 사용할 수 있습니다.)
- perf
- A code that improves performance
- 성능을 향상시키는 코드
- style
- A code that is related to styling
- 스타일링과 관련된 코드
- test
- Adding new test or making changes to existing test
- 새 테스트 추가 또는 기존 테스트 변경