기타/Github
GIT fatal: 'master' does not appear to be a git repositoryfatal: Could not read from remote repository. 발생 시
머리올리자
2021. 2. 8. 13:50
fatal: 'master' does not appear to be a git repository
fatal: Could not read from remote repository.
위와 같은 에러가 발생한다면
git remote -v
로 github repository 연결되어 있나 확인
아무런 내용도 안뜨면
git remote add origin https://github.com/username/repo이름.git
로 추가 현재 프로젝트에 등록된 리모트 저장소 추가
그 후 git pull 진행
git pull origin master
이러면 이상없이 동작하는 것을 확인할 수 있습니다.