Skip to content

5. 최신 코드 받아오기

Juyeong Lee edited this page Sep 11, 2020 · 1 revision

작업이 완료된 모든 코드는 upstreammaster branch에 합쳐진다.
개인이 작업중인 건 origin이므로, 본인이 작업하고 있는 도중에 변경된 부분이 알아서 적용되지 않는다.
upstreammaster branch의 최신 변경사항을 받아오려면

본인이 master branch에 위치해 있는 경우

$ git pull upstream master

본인이 master 이외의 다른 branch에 위치해 있는 경우

$ git fetch upstream master
$ git merge upstream/master

이러면 창이 하나 뜬다.
merge를 하면서 생기는 commit에 대한 부분인데, 따로 우리가 무언가를 해 줄 필요는 없다.
Esc를 누르고 :wq를 입력한 다음 엔터를 누른다.

최신 코드 받아오기 완료!