# .gitmodules 파일 생성 git submodule add https://github.com/아이디_또는_그룹/레포지토리_이름.git # 레포지토리 클론 후 서브모듈을 불러온다 git submodule update --init --recursive # 서브모듈의 최신 사항을 받아온다 git submodule update --remote # 서브모듈의 폴더명을 A에서 B로 변경하고 싶을 때 git mv A B