에러 메시지
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 파일을 모두 삭제해 주면 문제가 해결된다.
'Git' 카테고리의 다른 글
[Git] Github License 적용하기 (1) | 2024.07.22 |
---|---|
[Git] 가장 최근 commit으로 되돌아가기 (2) | 2024.01.30 |
[Git] Git 원격저장소 local로 가져오는 법 (Clone) (0) | 2023.12.16 |
[Git] ! [rejected] main -> main (non-fast-forward) 해결 방법 (0) | 2023.12.16 |
[Git] ! [rejected] main -> main (fetch first) 에러 해결 (0) | 2023.09.21 |