본문 바로가기
Python

vscode에서 git push 에러: 자격증명 관련

by YJHTPII 2023. 7. 18.
반응형

 

 

 

fatal: repository 'https://github.com/xxx/yyy.git/' not found

 

visual studio code에서 git repository에 push를 하려는 상황이었다.

local repository에 commit해 놓고, github repository에 push를 하려고

git remote add origin https://github.com/app/hello.git 

git push -u origin main

입력했더니아래와 같은 에러문구가 나왔다.

remote: Repository not found.
fatal: repository 'https://github.com/xxx/yyy.git' not found

 

 

해결방법은, 

제어판 > 사용자계정 > 자격증명관리자에 들어가서 windows 자격증명에 있는 git 계정정보를 확인했다.

 

github계정이 두개가 같이 있어서 repository를 github아이디를 가지고 찾을 때 혼동이 있었던 것이었다!!!

둘 중 하나 제거!!!!

( 참고로, Win10에서 제어판 가려면 윈도우키 + Pause Breake(pause) 버튼 클릭한 뒤 제어판 검색 하면된다!

또는 윈도우키 + R 에서 control입력하면된다!!)

반응형

댓글