<aside>
<img src="/icons/megaphone_gray.svg" alt="/icons/megaphone_gray.svg" width="40px" /> 목차
</aside>
깃허브
Repository Creation Rules
- “Repository이름-Repository내용” 으로 작성
- 소문자, 대시(-) 사용
- 예: nexton-backend, jeff-marketmaking
- README 파일을 포함하여 Repository 개요를 작성
- Visibility는 비공개로 설정
Commit Rules
- “Commit유형: Commit내용” 으로 작성
- 소문자, 콜론(:) 사용
- Commit유형
- Feat
- 새로운 기능 개발
- 예:
feat: user authentication module
- Fix
- 버그 수정
- 예:
fix: login issue with incorrect password handling
- Update
- 기존 기능 또는 파일 업데이트
- 예:
update: dashboard layout for better user experience
- Remove
- 기능 또는 파일 제거
- 예:
remove: deprecated API endpoints
- Refactor
- 기능 변경 없이 코드 구조 재구성
- 예:
refactor: authentication module for better readability
- Style
- 코드 포맷을 변경하거나 스타일 관련 수정 (기능 변경 없음)
- 예:
style: format code with Prettier
- 필요한 경우, Commit에 대한 간단한 설명을 본문에 포함
Branch Rules
- “Branch유형/Branch내용” 으로 작성
- 소문자, 하이픈(/) 사용