본문 바로가기
Git

[Git] gwarning: adding embedded git repository:

by holy_jjjae 2024. 7. 17.

에러 메시지

git add . 중 다음과 같은 에러를 마주했다.

warning: adding embedded git repository: not-MIWAE/dimvae
hint: You've added another git repository inside your current repository.
hint: Clones of the outer repository will not contain the contents of
hint: the embedded repository and will not know how to obtain it.
hint: If you meant to add a submodule, use:
hint:
hint: git submodule add <url> not-MIWAE/dimvae
hint:
hint: If you added this path by mistake, you can remove it from the
hint: index with: hint: hint: git rm --cached not-MIWAE/dimvae
hint:
hint: See "git help submodule" for more information.

원인

$\Rightarrow$ 에러 메시지에 등장하는 폴더 안에 다른 repository에 해당하는.git 파일이 있던 게 문제

 

해결방법

 

문제가 되는 폴더 내 해당하는 .git 파일을 모두 삭제해 주면 문제가 해결된다.