슬기로운 연구생활

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

슬기로운 에러 생활

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

vhrehfdl 2022. 10. 29. 19:15

- error message : Please make sure you have the correct access rights and the repository exists.

 

- 원인 : 원격 주소 설정이 되어 있지 않아 발생한 에러였다.

아마 git init을 먼저해서 그런 것 같다. 뭔가 꼬였다.

 

- 해결 방법 : git remote -v를 통해 원격 주소가 설정되어 있는지 확인했다.

아무것도 안 뜨면 설정이 안되어있는 것이다.

 

아래의 명령어로 설정해준다.

git remote add origin <https://github.com/octocat/Spoon-Knife.git>
Comments