본문 바로가기
개발/개발환경, 개발도구 - git , vscode

git submodule errors

by 개발자종혁 2020. 3. 13.
728x90

fatal: in unpopulated submodule

 

원인: 다른 곳과 submodule 연동이 안됨.

 

해결

1. 최상단에 .gitmodules 파일 안에 정보를 넣는다.

2. git module 초기화, update

rm -rf .git/modules
rm -rf build
git submodule update --init

 

 ! [remote rejected] master -> master (pre-receive hook declined)

error: failed to push some refs to xxxx

 

원인: 현재 submodule에 remote repository의 가장 최신의 것이 반영되지 않음

 

해결

1. 최신의 remote repo 정보 끌어오기

git pull 
git submodule update --remote --merge
728x90

댓글