Skip to content

Latest commit

 

History

History
40 lines (23 loc) · 1.12 KB

BRANCH_컨벤션.md

File metadata and controls

40 lines (23 loc) · 1.12 KB

Git Flow


git flow

branch

  • main

  • develop (개발용)

  • feature (develop에 기능추가용)

    git branch - feature

  • hotfix (main 브랜치 버그해결용)

    git branch - hotfix

  • release (develop 브랜치를 main 브랜치에 합치기 전에 최종 테스트용)

    git branch - release

Branch Naming

브랜치의 이름은 다음과 같이 작성합니다.

Red : mandatory | Blue : optional {github tag}/{domain}/{issue No.}/{developer name}

  1. github tag 는 feat, docs, chore, fix 등이 있습니다.
  2. issue No.에는 Jira에서 생성한 이슈의 번호가 들어갑니다.
  3. 마지막 담당자 이름은 선택 사항입니다.

예시


  • feat/member/#S10P31A702-127/LKT
  • fix/schedule/#S10P31A702-131/LKT