-
Notifications
You must be signed in to change notification settings - Fork 2
⌨️ 깃 컨벤션
JIN edited this page Jan 6, 2025
·
2 revisions
- Commitzen 사용 (🔗 Commitzen 바로가기)
- 이모지를 추가해 활용
-
dev-fe
와dev-be
브랜치 분리 후 작업- 매주 1회 이상
dev
브랜치에 머지
- 매주 1회 이상
-
feature/#이슈번호
refactor/#이슈번호
와 같은 형태로 브랜치 생성 후 작업 진행- 완료된 작업은
dev-fe
dev-be
중 해당하는 브랜치에 머지
- 완료된 작업은
gitGraph
branch dev
commit
branch "dev-fe"
branch "dev-be"
branch "feature/#123"
commit
commit
checkout "dev-fe"
merge "feature/#123"
branch "refactor/#456"
commit
commit
checkout "dev-be"
merge "refactor/#456"
checkout dev
merge "dev-fe"
merge "dev-be"