[Solved][Git] fatal: Not a git repository (or any of the parent directories): .gitfatal: Not a git repository (or any of the parent directories): .git
[ Warning with Delay ]
fatal: Not a git repository (or any of the parent directories): .gitfatal: Not a git repository (or any of the parent directories): .git
Building flutter tool...
Running pub upgrade...
정상적으로 git 관련 작업을 진행하지 못할때 발생되는 문구입니다.
git이 설치되어있지 않거나, 설치한 데이터에 문제가 있을 경우 발생합니다.
[ 해결 방법 ]
상황에 맞게 git을 설치하거나 설치한 데이터를 삭제 후 재설치 진행하는 것으로 해결할 수 있습니다.
+ 필자의 경우 독특하게, AutoRun으로 설정한 명령어가 있는데, (ex. cd C:\Program Files)
현재 경로나 PATH의 경로에 있는 .git을 불러오는 것이 아닌, 위 AutoRun으로 설정된 경로에서만 .git을 찾는 시도를 하고, 실패하니 Fail이 되었습니다. 해당 AutoRun 설정을 삭제해주었습니다. 관련 설정 수정 방법은 아래 링크 내용을 참조하여 진행할 수 있습니다.
https://growingsaja.tistory.com/20
>>> 정상화 후 flutter 커맨드를 통해 1번만 진행해주면, 이후부터 해당 문구가 발생하지 않는 것을 확인할 수 있습니다.
Git 설치 방법은 아래 링크를 통해 확인할 수 있습니다.
https://growingsaja.tistory.com/237