본문 바로가기
Git

git push 오류 발생 시

by @hohoya33 2019년 09월 08일

에러 발생 메세지

fatal: 'orgin' 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.

위와 같이 push 할 때 오류 발생 시

git remote -v 를 통하여 remote가 정상적으로 연결되어있는지 확인 합니다.

git remote -v
origin git@github.com:hohoya33/react.git (fetch)
origin git@github.com:hohoya33/react.git (push)

ssh 주소를 아래 https 주소로 변경

git remote set-url origin https://github.com/hohoya33/react.git git push -u origin master
git push origin master

이렇게 푸시하면 잘 됩니다.

개의 댓글