You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
flowchart TD
A[master (운영 브랜치)]
B[develop (공통 개발 브랜치)]
A --> B
B --> C1[feature/name_feature-name1 생성]
C1 --> C2[feature/name_feature-name1 개발 중]
C2 --> C3[feature/name_feature-name1 완료]
C3 --> D1[테스트 및 코드 리뷰]
D1 --> B
D1 --> A
B --> E1[feature/name_feature-name2 생성]
E1 --> E2[feature/name_feature-name2 개발 중]
E2 --> E3[feature/name_feature-name2 완료]
E3 --> F1[테스트 및 코드 리뷰]
F1 --> B
F1 --> A