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

2023. 8. 22. 20:12Programming

GitHub LOGO

처음 폴더를 만들고 pull 하려니 아래와 같은 애러가 발생했어요

fatal: not a git repository (or any of the parent directories): .git 오류발생 이미지

fatal: not a git repository (or any of the parent directories): .git 내용을 검생한결과 

현재 폴더에 git에 대한 정보 담은 파일이 없기 때문에 발생하는 에러가 발생한것이라고 해요 

git init
git remote add origin (GitHub주소)

순으로 실행해주시면 에러를 해결할 수 있어요 

반응형