Feature Branch
# 1. feature 브랜치 생성
git remote add upstream
http://github.com/cubrid/cubrid
git fetch upstream
git checkout -b feature/my_feature upstream/develop
git push -u upstream feature/my_feature
# 2. github에서 여러 번의 PR
git fetch upstream
git checkout -b CBRD-OOOOO upstream/feature/my_feature
# many commits (개발 진행)
git push -u origin CBRD-OOOOO
# PR 생성 후 코드 리뷰
# 2. 를 여러 번 반복 == 여러 번의 리뷰 라운드
# 3. develop과 sync by merge (sync를 위한 커밋은 PR하지 않음)
git checkout feature/my_feature
git fetch upstream
git merge upstream/feature/my_feature // should be fast-forward merging
git merge upstream/develop
git push upstream feature/my_feature
# 2. 를 여러 번 반복 == 여러 번의 리뷰 라운드
git push origin CBRD-OOOOO
# CBRD-00000에 대한 PR 생성Last updated
Was this helpful?