아무거나

[git] commit or discard the untracked or modified content in submodules 본문

Infra/Git & SVN

[git] commit or discard the untracked or modified content in submodules

전봉근 2019. 10. 26. 23:09
반응형

...

(commit or discard the untracked or modified content in submodules)

        modified: ... (modified content, untracked content)

```

 

위와 같이 에러메세지가 뜨면서 무시하고 push를 할 경우에는 repo에 제대로 저장되지 않는 현상이 일어난다.

그럴 경우 말 그대로 서브모듈로 뭔가 서브 디렉토리에 .git 저장소가 또 존재한다는 것이다.

 

find -name ".git"

위의 명령을 통하여 하위 디렉토리에 .git 모듈이 존재하는지 확인하면 존재하는 목록이 표시된다.

그러면 하위 .git 폴더를 모두 삭제한다. 그러면 해결된다.

반응형
Comments