더북(TheBook)

다시 원본 저장소( gitstudy06)에서 git pull 명령어를 실행하면 feature 브랜치 정보로 자동 병합됩니다. 먼저 원본 로컬 저장소로 이동한 후 feature 브랜치로 체크아웃합니다.

$ cd ../gitstudy06 원본 로컬 저장소로 이동

 

infoh@DESKTOP MINGW64 /e/gitstudy06 (hotfix)

$ git checkout feature 브랜치 이동

Switched to branch 'feature'

Your branch is behind 'origin/function' by 1 commit, and can be fast-forwarded.

(use "git pull" to update your local branch)

원격 저장소의 function 브랜치를 로컬 저장소의 feature 브랜치로 내려받습니다.

infoh@DESKTOP MINGW64 /e/gitstudy06 (feature)

$ git pull 원격 저장소의 function 브랜치를 feature 브랜치로 내려받기

Updating d84766c..85f1dfa

Fast-forward

branch.htm | 3 ++-

1 file changed, 2 insertions(+), 1 deletion(-)

▼ 그림 6-24 변경 내용 받기

344115.png

로컬 저장소의 feature 브랜치에 수정한 내용이 반영되었는지 확인해 볼까요? cat 명령어를 사용하여 잘 반영된 것을 확인합니다.

infoh@DESKTOP MINGW64 /e/gitstudy06 (feature)

$ cat branch.htm

<h1>브랜치 실습을 합니다.</h1>

복제된 gitstudy06_clone function 브랜치를 수정합니다. 복제 저장소에서 변경된 내용

신간 소식 구독하기
뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.