11.4.3 모듈 커밋
parent/child 저장소의 내용을 수정했습니다. 자식의 서브 폴더 저장소에서 수정한 내용을 커밋합시다. 먼저 메인 저장소의 parent/child 폴더로 이동합니다.
infoh@DESKTOP MINGW64 /e/gitstudy11_parent (master)
$ cd child 서브모듈 폴더 이동
infoh@DESKTOP MINGW64 /e/gitstudy11_parent/child (master)
$ git commit -am "add content of child" 등록 및 커밋
[master a7709f5] add content of child
1 file changed, 2 insertions(+), 1 deletion(-)
커밋했습니다. 이 커밋은 메인 저장소에서 하위로 복제 생성된 자식 저장소에만 커밋하는 것입니다. 저장소 상태를 다시 확인합니다.
▼ 그림 11-9 커밋해서 저장한 저장소 위치
infoh@DESKTOP MINGW64 /e/gitstudy11_parent/child (master)
$ git status 서브 폴더의 상태 확인
On branch master
Your branch is ahead of 'origin/master' by 1 commit.
(use "git push" to publish your local commits)
nothing to commit, working tree clean