Remote Setting
현재 remote repository 확인 명령어
$ git remote -v
git remote 변경 명령어
$ git remote set-url origin {https://github.com/johndoe/example.git}
git remote 동기화 명령어
$ git remote update origin --prune
Remote Branch
Remote branch 리스트 확인하기
$ git branch -r
Remote branch가져오기
$ git checkout -t origin/{branch_name}