에러 발생 메세지
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
이렇게 푸시하면 잘 됩니다.
'Git' 카테고리의 다른 글
git 히스토리 삭제 github 특정 파일 (보안파일, 패스워드, 비밀번호) 히스토리 삭제하는 방법 (0) | 2022.01.26 |
---|---|
git 커밋 git add -p 명령어를 사용해서 커밋하기 (0) | 2021.10.11 |
소스트리 Remote에 있는 브랜치 상태 갱신 하는 방법 (0) | 2021.09.15 |
github remote: Permission to 403 에러 (0) | 2021.04.01 |
git 사용방법과 명령어 (0) | 2021.03.24 |
개의 댓글