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