git remote
git remote는 연결하는 것.
그래서 1개 이상도 연결이 가능하다.
git remote add '이름' '주소'
git remote -v 를 보면 몇 개가 어디에 연결되어있는지 나온다.
git push '이름'
예를들면 git push hongwr master
git push ddh master 이런 식.
pull도 마찬가지
git pull '이름'
git pull hongwr master
git pull ddh hongwr (브렌치)