본문 바로가기
Git

[Git] Please make sure you have the correct access rightsand the repository exists. 오류 해결 방법

by 가론노미 2023. 5. 9.

ssh 환경에서 기존에 잘 사용중이던 repository git pull을 시도하자 아래와 같은 오류가 발생하였다.

ERROR: Repository not found.
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

 

git remote -v 명령어를 통해 현재 설정된 remote 주소를 확인해보자.

$ git remote -v
origin	git@github.com:dev/test-repository.git (fetch)
origin	git@github.com:dev/test-repository.git (push)

 

정상적으로 연결은 되어 있으나 ssh 형식이다.

SSH 키 문제인 듯 싶은데 remote 주소를 http url로 변경하고 다시 pull을 시도해보면 정상적으로 동작한다.

$ git remote set-url origin https://github.com/dev/test-repository.git

 

https://stackoverflow.com/questions/25927914/git-error-please-make-sure-you-have-the-correct-access-rights-and-the-reposito/30935242#30935242