이번에는 상위인 메인 저장소의 폴더로 이동합니다. 여기서 다시 상태를 확인합니다.
infoh@DESKTOP MINGW64 /e/gitstudy11_parent/child (master)
$ cd .. 상위 메인 저장소로 이동
infoh@DESKTOP MINGW64 /e/gitstudy11_parent (master)
$ git status 상위 폴더의 상태 확인
On branch master
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
(commit or discard the untracked or modified content in submodules)
modified: child (modified content) 서브모듈 폴더가 변경됨
no changes added to commit (use "git add" and/or "git commit -a")
메인 저장소의 상위 폴더에서는 child 폴더만 변경했다고 출력합니다. child 서브 폴더 안에서는 자식 저장소의 변경된 파일만 추적하고, 상위 메인 저장소에서는 서브모듈의 저장소 자체를 추적합니다.
diff 명령어로 확인해 봅시다.
infoh@DESKTOP MINGW64 /e/gitstudy11_parent (master)
$ git diff 커밋 비교
diff --git a/child b/child
--- a/child
+++ b/child
@@ -1 +1 @@
-Subproject commit 257378745eb0929a2f416fb51b34c4bdce4d29ce
+Subproject commit 257378745eb0929a2f416fb51b34c4bdce4d29ce-dirty 서브모듈 저장소를 추적 비교