Notice
Recent Posts
Recent Comments
Link
목록Repository (1)
삶의 공유
[Git] not a git repository Error 해결 방법
Git을 설치하고 난 후 git이 제대로 동작해보려고 하니 이게 왠걸? 아래와 같은 Error 가 발생 했다. fatal: not a git repository (or any of the parent directories): .git 이 Error의 원인 부터 알아보자 fatal: not a git repository (or any of the parent directories): .git 에러가 발생하는 이유현재 폴더에 git에 대한 정보 담은 파일이 없기 때문에 발생하는 에러이다. git에 대한 정보를 담은 파일을 만들기 위해서는 git init 명령어만 작성해주면 된다. Initialize가 되면서 아래와 같이 .git 폴더도 생신것이 확인 된다. 이제 다시 git status 명령어를..
Programing/개발환경설정
2024. 9. 3. 22:33