git remote add upstream https://github.com/CUBRID/cubrid.git
# origin http://github.com/hgryoo/cubrid (fetch)
# origin http://github.com/hgryoo/cubrid (push)
# upstream http://github.com/cubrid/cubrid (fetch)
# upstream http://github.com/cubrid/cubrid (push)
# 작업할 새로운 브랜치 가져오기, upstream으로부터 브랜치 생성!
# git push로 잘못 반영되는 것을 방지하기 위해
# 아래 두 명령어는 항상 함께 실행해야 합니다.
git checkout -b CBRD-55555_my_work upstream/develop
git push -u origin -b CBRD-55555_my_work
# 소스를 올릴 remote 이름과 브랜치 이름을 항상 적어줍니다
git push origin CBRD-55555_my_work
# upstream의 develop의 내용을 반영하고 싶을 때
git merge upstream/develop