Git & GitHub

[Git] fatal: not a git repository (or any of the parent directories) 해결

sungjine 2022. 2. 20. 11:46
반응형

원격 저장소에서 Clone 명령어로 프로젝트를 가져온 후 git 명령어를 사용할 때 

 

fatal: not a git repository (or any of the parent directories) 라는 에러가 발생했다.

 

이 에러는 git 명령어를 실행하려는 디렉터리가 git의 관리하지 않는 디렉터리이기 때문이다.

 

이러한 경우 git init 명령어를 실행하여 해결할 수 있다.

반응형