git remote add upstream <<Fork한 레포지토리 주소>>
upstream을 연결함
연결되어있는지 확인하는 방법
git remote
git checkout -b release
깃 브랜치로 checkout하는 명령어
없으면 브랜치를 만든 뒤, checkout함
git pull upstream release
upstream에 있는 repo를 가져옴
git push origin release
origin에 release 브랜치를 push, 즉 올림
변경 이력을 orgin에 release 브랜치를 올림