반응형
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) 버튼 클릭하면된다! )
반응형
'오류 이모저모' 카테고리의 다른 글
[matplotlib font family error] findfont: Font family ['NanumGothic'] not found. Falling back to DejaVu Sans. / font_manager matplotlib centos7 (0) | 2022.03.17 |
---|---|
conda activate 오류 / conda activate 안됨 (0) | 2022.03.14 |
E: Unable to locate package nginx (0) | 2022.03.02 |
Failed to create bus connection: No such file or directory (0) | 2021.11.24 |
Mix Content 해결 ( ssl적용 후 발생 ) (0) | 2021.07.21 |