콘텐츠로 건너뛰기

git submodule 사용법

서브모듈 추가

$git submodule add [url] [name]

*가끔 add_clone not function 이라는 에러 메세지가 나올때가 있는데 깃 버전이 낮아 발생하는 에러이니 버전 업데이트를 해보기 바란다.

https://ohgyun.com/711

서브모듈의 url 변경

.gitsubmodule 파일의 url 항목을 변경하고 다음 명령을 실행한다

git submodule sync --recursive <submodule_dir>

리포지토리 기록이 다를경우 새로 체크아웃 해야한다.

cd <submodule_dir>
git fetch
git checkout origin/master
git branch master -f
git checkout master

https://stackoverflow.com/questions/913701/how-to-change-the-remote-repository-for-a-git-submodule

https://rateye.tistory.com/296

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다