-
Notifications
You must be signed in to change notification settings - Fork 4
5. 최신 코드 받아오기
Juyeong Lee edited this page Sep 11, 2020
·
1 revision
작업이 완료된 모든 코드는 upstream
의 master
branch에 합쳐진다.
개인이 작업중인 건 origin
이므로, 본인이 작업하고 있는 도중에 변경된 부분이 알아서 적용되지 않는다.
upstream
의 master
branch의 최신 변경사항을 받아오려면
$ git pull upstream master
$ git fetch upstream master
$ git merge upstream/master
이러면 창이 하나 뜬다.
merge를 하면서 생기는 commit에 대한 부분인데, 따로 우리가 무언가를 해 줄 필요는 없다.
Esc
를 누르고 :wq
를 입력한 다음 엔터를 누른다.
최신 코드 받아오기 완료!