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
'개발 > 개발환경, 개발도구 - git , vscode' 카테고리의 다른 글
'\r': command not found (visual studio code 에서 해결 포함) (0) | 2021.04.01 |
---|---|
visual studio code - snippet 설정하기 (0) | 2021.03.31 |
gitlab page에 hugo 사용하기 (0) | 2020.04.10 |
gitlab error - A default branch (e.g. master) does not yet exist for <branch_name> (0) | 2020.04.06 |
git rebase vs merge 차이? (0) | 2020.03.13 |
댓글