Skip to content

Git Convension

YoungHo Cha edited this page Aug 31, 2022 · 2 revisions

Overview

Git Convension에 대한 내용입니다.

✏️ Branch Strategy & Naming Strategy

Branch Strategy

Git Flow을 이용합니다.

🔍 Commit naming strategy

  • 기능 구현 : "Feature : <내용>"
  • 리팩토링 : "Refactoring : <내용>"
  • 버그 수정 : "BugFix : <내용>"
  • 기타 수정 : "Fix : <내용>"
  • 문서 작성 : "Docs : <내용>"
  • 기타 : "Etc : <내용>"

🔍 Pull & Request naming strategy

  • 기능 구현 : "[Feature] <내용>"
  • 버그 수정 : "[Bug] <내용>"
  • 문서 수정 및 추가 : "[Docs] <내용>"
  • 기타 : "[Etc] <내용>"
  • CI/CD 수정 : "[DevOps] <내용>"

Clone this wiki locally