Hello World...

git pull pair 본문

git

git pull pair

FaustK 2019. 12. 23. 21:25

페어 프로그래밍시 깃 플로우.

 

    repo fork 후 로컬에 클론
    $ git clone <repo URL>
    
    페어의 레포 연결하기 git remote add [별칭] [저장소 주소]
    $ git remote add <pair> <repo URL for pairs fork>
    $ git remote -v  // 현재 원격 저장소 확인
    $ git remote remove <name>  저장소 이름 지우기
    
    본인 레포 커밋 후 푸시
    $ git add .
    $ git commit -m 'change'
    $ git push origin master(or other branch name)
    
    페어 레포에서 풀하기
    $ git pull pair master(or other branch name)

 

 

'git' 카테고리의 다른 글

github default branch 변경하기  (0) 2020.01.14
Comments