intellij를 사용하다가 .gitignore에 .idea 폴더를 추가하는 과정에서 잘못하여 idea 폴더를 삭제 해버렸다..
The .idea folder (hidden on OS X) in the solution root contains IntelliJ’s project-specific settings files. These include per-project details such as VCS mapping and run and debug configurations, as well as per-user details, such as currently open files, navigation history and currently selected configuration.
그래서 그 결과로 파일들만 보이고 디렉토리는 보이지 않게 됐다.
🥲 사실 처음에는 원인도 알지 못하여 뭐가 문제일지 검색을 해본 결과 알게 되었다.
stackoverflow의 글을 적극 활용했는데 해볼 수 있는 방법은 두가지였다.
심플하게 .idea 폴더를 지우고 프로젝트를 다시 리로드하기
rm -rf .idea
Modules 추가하기
필자는 두번째로 해결해보기로 했다.
❗️그러면 다시 프로젝트를 볼 수 있게 된다!
앞으로는 .idea 폴더를 조심해서 다뤄야할 것 같다.
혹시나 비슷한 상황에 놓이게 된다면 도움이 됐으면 좋겠다 :)
정말 감사합니다. 무슨 짓을 해도 안됐는데 .idea 폴더 지우고 재시작하니까 되네요!