Skip to content

branch naming

SeWonKim edited this page Apr 20, 2020 · 1 revision

Git Branching Model 참조

master branch🔥

  • 항상 최신 stable release를 반영
  • master branch에 merge하는 버전은 항상 stable release 버전이어야 한다

develop branch🔨

  • master branch로부터 생성
  • 개발용 main branch로 사용한다

release branch⛑

  • development branch로부터 생성
  • bugfix만 반영한다
  • Naming convention: release/<version_number>
  • 개발 완료 후 master와 develop branch에 merge

hotfix branch🩹

  • master branch로부터 생성
  • master branch에 심각한 오류가 있는 경우에만 생성
  • Naming convention: hotfix/<issue_number>
  • 개발 완료 후 master, develop, release branch에 merge

feature branch🔬

  • develop branch로부터 생성
  • 기능 개발할 때 사용
  • 개발 완료 후 develop branch에 merge
  • Naming convention: feature/<issue_number>/<short_description>