git remote add upstream <team repo 주소>
git remote add origin <본인 repo 주소>
git remote -v
git add .
git commit -m ""
git push origin master
본인의 repo에 들어가서 pull request 날리기
팀 repo에 들어가서 merge
다른 사람에게 merge해달라고 부탁하기
git pull upstream master
충돌난 코드 정리 후
git add .
git commit -m ""
git push origin master