Skip to content

Latest commit

 

History

History
17 lines (9 loc) · 597 Bytes

git_branch.md

File metadata and controls

17 lines (9 loc) · 597 Bytes

Git Branch Strategy

Git Flow

  • Frontend와 Backend 모두 Git Flow 전략을 채택하여 개발한다.

image

Branch

✅ master : 제품으로 출시될 수 있는 브랜치를 의미한다.

✅ develop (dev) : 다음 출시 버전을 개발하는 브랜치이다. feature에서 리뷰완료한 브랜치를 Merge한다.

✅ feature (feat) : 기능을 개발하는 브랜치이다.

✅ hotfix : 출시 버전에서 발생한 버그를 수정하는 브랜치이다.