-
Notifications
You must be signed in to change notification settings - Fork 0
branch naming
SeWonKim edited this page Apr 20, 2020
·
1 revision
- 항상 최신 stable release를 반영
- master branch에 merge하는 버전은 항상 stable release 버전이어야 한다
- master branch로부터 생성
- 개발용 main branch로 사용한다
- development branch로부터 생성
- bugfix만 반영한다
- Naming convention:
release/<version_number>
- 개발 완료 후 master와 develop branch에 merge
- master branch로부터 생성
- master branch에 심각한 오류가 있는 경우에만 생성
- Naming convention:
hotfix/<issue_number>
- 개발 완료 후 master, develop, release branch에 merge
- develop branch로부터 생성
- 기능 개발할 때 사용
- 개발 완료 후 develop branch에 merge
- Naming convention:
feature/<issue_number>/<short_description>