git remote add origin 명령을 할 때 이런 오류가 나기도 한다. fatal : remote origin already exists 해결 방법 기존 저장소 삭제 git remote remove origin 기존에 연결되어 있는 원격 저장소와 연결을 끊어준다. 다시 연결 git remote add origin [새롭게 연결할 깃 리포지토리 주소] 확인 git remote -v 결과 origin 리포지토리 주소(fetch) origin 리포지토리 주소(push) origin 혹은 master라고 되어 있다. [참고링크] 👇 [Git] Git Remote origin already exists 에러해결 remote origin 삭제 깃의 Remote origin already exists 에러는..