본문 바로가기

기타

[git] git으로 pair 프로그래밍 하기

1. Github에서 같이 사용할 repository 각자 fork 하기

2. 각자 자신의 로컬 환경에 repository clone 하기

$git clone <Repo URL>

3. pair의 repository를 remote환경으로 세팅하기

$git remote add pair <Repo URL for pairs fork>
$git remote -v

여기서 'pair'는 별칭으로, pair라고 하지 않고 다른 이름을 사용해도 됨.

* 예를 들어, 'pair'대신 'pair1'이라고 써도 됨.

 

세팅이 완료되면 터미널에 위와 같이 된다.

 

이는 내 로컬과 페어의 원격 저장소가 연결되는 것이다.


코드를 수정 후 push 할 경우

4. 수정 후 commit 하기

$git add <change file>
$git commit -m 'change'

5. 코드를 remote origin에 push 하기

$git push origin master(or other branch name)

 

여기서의 push는 내 레포지토리에 push하는 것을 뜻한다.


다른 사람이 수정한 코드를 pull 할 경우

4. pair의 코드를 내 local repository로 pull해오기

$git pull pair master(or other branch name)

 

pull해오는 코드는 상대방의 원격 레포지토리에서 받아오는 코드이다.