From 386a242972d41a2c36b379975fca8fc55e11ffbb Mon Sep 17 00:00:00 2001 From: Vincent Lee Date: Fri, 18 May 2018 07:54:39 +0900 Subject: [PATCH] =?UTF-8?q?Fix=20a=20type=20(=EC=84=9C=EB=AF=80=EB=AA=A8?= =?UTF-8?q?=EB=93=88=20=3D>=20=EC=84=9C=EB=B8=8C=EB=AA=A8=EB=93=88)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- book/07-git-tools/sections/submodules.asc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/07-git-tools/sections/submodules.asc b/book/07-git-tools/sections/submodules.asc index fcee86d4..de43658c 100644 --- a/book/07-git-tools/sections/submodules.asc +++ b/book/07-git-tools/sections/submodules.asc @@ -555,7 +555,7 @@ Then you need to tell Git what to do if you have made changes and then `git subm The options are that you can merge them into your local work, or you can try to rebase your local work on top of the new changes. /////////// 서브모듈이 브랜치를 추적하게 하려면 할 일이 두 가지다. -우선 각 서므모듈 디렉토리로 가서 추적할 브랜치를 Checkout 하고 일을 시작해야 한다. +우선 각 서브모듈 디렉토리로 가서 추적할 브랜치를 Checkout 하고 일을 시작해야 한다. 이후 서브모듈을 수정한 다음에 `git submodule update --remote` 명령을 실행해 Upstream 에서 새로운 커밋을 가져온다. 이 커밋을 Merge 하거나 Rebase 하는 것은 선택할 수 있다.