티스토리 뷰

Git

pair git push/pull

Aairon 2019. 2. 11. 23:19
반응형

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

반응형

'Git' 카테고리의 다른 글

gitignore / git rm / git add  (0) 2019.04.29
git intro keyword  (0) 2019.04.29
git clone, push  (0) 2018.10.20
터미널 명령어  (0) 2018.10.20
깃허브 기초(왕초보용)  (0) 2018.08.11
댓글