Skip to content

Latest commit

 

History

History
60 lines (33 loc) · 905 Bytes

README.md

File metadata and controls

60 lines (33 loc) · 905 Bytes

🔑 SWITH SERVER'S CONVENTIONS 🔑

1. issue convention

📌 형식:

[타입] 이슈 내용



☝🏻 예시:

[Feat] User 도메인 구현

[Refactor] User 관련 DTO 수정

⭐️ assignee와 해당하는 라벨도 체크해주세요!


2. branch convention

📌 형식:

타입/#이슈번호-간단한 설명

⭐️ 이때 타입은 해당 Branch의 이슈 타입과 동일하게 가져가시면 됩니다!

☝🏻 예시:

feat/#1-User-도메인-설계

refactor/#32-쿼리-최적화


3. commit convention

📌 형식:

커밋 타입(#이슈번호) : 커밋 내용

☝🏻 예시:

feat(#32) : User 도메인 구현

feat(#32) : User 필드값 annotation 추가


4. PR conventions

📌 형식:

커밋 타입 : 커밋 내용 (#이슈번호)

☝🏻 예시: feat : User 도메인 구현 (#3)