-
fatal: not a git repository (or any of the parent directories): .git 에러IT-Information/Blog-operation 2022. 6. 2. 10:33
문제
$ git status
>fatal: not a git repository (or any of the parent directories): .git
위와 같은 에러 발생 시 대응 방안
해결
git repository로 사용하기 위한 초기화 작업이 진해오디지 않아 발생하는 오류로 해당 디렉토리에 .git 폴더가 있는지 여부를 확인하고 없을 경우 git init 명령어로 초기화 및 기본 설정 폴더인 .git 디렉토리를 생성해야 한다.
$ git init
>Initialized empty git repository in C:~경로 ~/.git/
위와같이 하면 다시 처음 진행하려던 명령어가 진행된다.