프로그래밍 농장

fatal: not a git repository (or any of the parent directories): .git 본문

카테고리 없음

fatal: not a git repository (or any of the parent directories): .git

Tennessee201 2022. 2. 18.
728x90

fatal: not a git repository (or any of the parent directories): .git

 

[원인]

현재 폴더에 git에 대한 정보를 담은 파일이 없기 때문에 발생하는 에러.

git init를 수행하고 다시 git remote add 명령어를 실행하면 된다.


  • git remote add는 이미 개발하고 있는 어떤 소스코드를 git에서 관리하고 싶어서 생성되어 있는 어떤 git repository에 현재 폴더를 연결하고자 할 때 사용할 수 있다.

 

 

[해결]

$ git init 수행후 다시 $ git remote add 명령어 실행 

728x90