Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 526 Bytes

convention.md

File metadata and controls

32 lines (24 loc) · 526 Bytes

개발 컨벤션 & 협업 전략

커밋 메시지

커밋 메시지 형식은 아래와 같습니다. subject까지만 작성해도 괜찮습니다.

<type>(<scope>): <subject>
<BLANK LINE>
<body>
<BLANK LINE>
<footer>

커밋 타입(<Type>)

  • feat : (feature)
  • fix : (bug fix)
  • docs: (documentation)
  • style : (formatting, missing semi colons, …)
  • refactor
  • test : (when adding missing tests)
  • chore : (maintain)

브랜치 전략

  • main
  • develop
  • feature
  • release
  • hotfix