주의사항 : push는 자신의 레파지토리에, pull을 땡겨올때는 페어의 레파지토리에서.
$ git clone <Repo URL>
$ git remote add pair <Repo URL for pairs fork>
$ git reomte -v // 현재 원격 저장소 확인
$ git add <change file>
$ git commit -m 'message'
$ git push origin master(or other branch name)
직전에 작성된 코드를 자신의 local로 가져온다
$ git pull pair master(or other branch name)
$ git add <change file>
$ git commit -m 'message2'
$ git push origin master(or other branch name)
$ git pull pair mater(or other branch name)
$ git add <change file>
$ git commit -m 'message3'
$ git push origin master(or other branch name)