11.4.2 모듈 상태
모듈로 등록된 자식 저장소를 수정합시다. 메인 저장소의 child 폴더에서 child.htm 파일의 내용을 수정합니다.
infoh@DESKTOP MINGW64 /e/gitstudy11_parent/child (master)
$ code child.htm VS Code 실행
서브모듈 폴더
child.htm
<h1>자식 저장소</h1>
<h2>child는 서브모듈입니다.</h2>
파일을 수정한 후 서브 폴더 안에서 깃 상태를 확인합니다.
infoh@DESKTOP MINGW64 /e/gitstudy11_parent/child (master)
$ git status 서브 폴더 안에서 상태 확인
On branch master
Your branch is up to date with 'origin/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)
modified: child.htm
no changes added to commit (use "git add" and/or "git commit -a")
child 폴더 안의 파일을 수정했습니다. 서브 폴더도 독립된 깃 저장소이기 때문에 status 명령어로 상태를 추적할 수 있습니다.