레포 가져오기git clone 특정 레포를 현재 레포의 submodule로 연결하기# 현재 위치: ~/hdl_workspace/my_projectgit submodule add ../common lib/common# file 이송에 대한 fetal 에러 발생하는 경우git -c protocol.file.allow=always submodule add ../common lib/common common 내부의 변경사항 적용하기서브모듈 (lib/common에서) 수정할때# submodule git checkout main# 서브모듈 내에서 커밋 (여기서 git은 common_ip 레포를 가리킴)git add git commit -m "Fix: Update logic"git push origin main ..