본문 바로가기
개발/Git

[Git] fatal: repository 'https://github.com/.../' not found

by yo.na 2022. 10. 28.

안녕하세요.
새로운 repository 에 푸시할 때 봤던 오류라 적어놨는데도 깜빡해서 블로그에 적어둡니다

 

✔ 환경

MacBook

VScode

 

✔ 문제

remote 까지는 문제 없다가 push 하려고 하면 아래와 같은 오류 발생.

fatal: repository 'https://github.com/.../' not found

 

✔ 해결

git remote add origin https://아이디@github.com/아이디/props-prac.git

애초에 이렇게 remote 하면 저 문제가 발생 안합니다.

 

+ 리모트 주소 수정 명령어

git remote set-url origin "https://아이디@github.com/아이디/props-prac.git/"

 

하지만 이미 오류를 봤고, 위의 명령어를 입력했을 때

fatal: remote origin already exists

리모트가 이미 있다는 오류가 뜨면

 

git remote rm origin

remote 삭제 명령어를 입력하고 다시 remote 를 진행하시면 됩니다.

 

 

✔ 원인

원인은 아직 모르겠습니다.

우선 적어 놓을게요.