fatal: 'origin' does not appear to be a git repository
fatal: Could not read from remote repository.
위와 같이 origin master로 git push 할 때 오류 발생 시,
git remote -v 를 통하여 remote가 정상적으로 연결되어 있는지 확인한다.
git remote -v
원격 저장소에 origin/master가 없거나 remote repository 설정이 잘못되어 있다면?
기존 원격 저장소 연결 삭제
git remote remove origin
다시 연결
git remote add origin "연결할 github 주소"
'Git' 카테고리의 다른 글
[Git] Git 특정 Branch Clone 하기 (0) | 2021.11.11 |
---|
댓글