플러터
VS Code Git 사용 시 오류 발생 (fatal: not a git repository (or any of the parent directories): .git)
슬기로운IT생활
2022. 7. 6. 21:50
728x90
Git 사용 시 아래와 같은 오류가 발생했다.
fatal: not a git repository (or any of the parent directories): .git
이유는 git에 대한 정보를 담은 파일이 없어서 그런 것이고, 아래와 같이 해결하면 된다.
git init 수행
git remote add 수행
728x90