pull 혹은 push 를 하는 도중에 원격 저장소 에러가 떴다!
*** 에러 과정 ***
1) pull 명령어를 사용
git pull master
2) 에러발생 메시지
git pull master
fatal: 'master' does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
3) git remote -v 를 통한 원격 저장소를 확인!
june git@github.com:--------.git (fetch)
june git@github.com:--------.git (push)
이런식으로 되어 있음.
*** 해결 방법 ***
현재 연결된 주소를 해제 후 재연결을 합니다!
제 기준으로 설명을 하자면 저는 oirgin 이라는 이름 대신에 june 이라고 이름을 붙였습니다.
1) 기존 원격 저장소 연결 삭제!
git remote remove june
2) 다시 연결
git remote add origin 깃주소/***.git
3) git remote -v 로 재확인!
해-결!