pair git push/pull
·
Git
1. github repo를 각각 fork하고 clone 한다 git clone/push 방법 2. pair의 github를 remote한다 명령어 : git remote add pair https://상대방 clone 주소 3. 작업이 완료 되면 내 repo에 commit 후 push 한다 명령어 : git commit -m '내용' : git push origin master 4. 상대방의 repo에 push한다 명령어 : git push pair master 5-1. 상대방이 작업하여 나의 repo에 push한 파일을 가져올 때 명령어 : git pull origin master 5-2. 상대방의 repo의 파일을 가져올 때 명령어 : git pull pair master