본문 바로가기

오류 이모저모

fatal: repository 'https://github.com/app/hello.git/' not found

반응형

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

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

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

git pull origin master --allow-unrelated-histories

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

remote: Repository not found.
fatal: repository 'https://github.com/app/hello.git' not found

 

 

해결방법은, 

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

 

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

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

 

반응형