DevOps/Git14 [해결 방법] fatal: not a git repository (or any of the parent directories): .git 발생 Error Git Bash에서 다음 명령어를 입력할 경우, git ls-files ⭐ fatal: not a git repository (or any of the parent directories): .git Error 발생 Error 원인 Git Bash가 실행된 폴더에 git에 대한 정보를 담은 파일이 없기 때문에 발생 Git Bash를 Window 검색창에서 실행시켜서 .git 폴더에 대한 탐색이 Local C\user\사용자명에서 일어난 것으로 추정 (추후, init으로 인해 .git 폴더가 Local C\user\사용자명에 생성되었으므로 위와 같이 추정) 해결 방법 git init git remote add origin repository_url git init을 통해 Git 저장소를 생성.. 2023. 1. 15. [Git Bash] Github Repository 내 폴더 이름 변경 Github 폴더 이름 변경을 검색하면 git bash에서 다음과 같은 명령어를 입력하라는 내용이 나온다. (참조: [Git] 폴더 이름 바꾸기) git ls-files // 폴더 및 파일 확인 git mv 현재폴더명 바뀔폴더명 git add . git commit -am "commit message 입력" git push origin master 따라서 Git Bash에 git ls-files를 입력하면 다음과 같이 나온다. 첫번째 명령어는 git을 입력 안해서 command not found error가 발생하였고, 두번째 명령어는 git을 입력했지만 fatal: not a git repository (or any of the parent directories): .git error가 발생하였다. ⭐.. 2023. 1. 15. 이전 1 2 3 다음