- Today
- Total
Notice
Recent Posts
Recent Comments
Link
250x250
프로그래밍 농장
Git Remote origin already exists 에러해결 remote origin 삭제 [Git] 본문
728x90
Git의 Remote origin already exists 에러는 기존에 연결되어있는 레파지토리가 다시 새로운 레파지토리에 소스코드를 올리려고 하면 발생되는 에러이다.
필자의 경우, remote origin 을 잘못입력해서 수행이안되고 위와 같은 에러가 출력되었다.
해결방안
1. git remote remove origin 명령어를 입력하여 기존에 연결되어 있는 원격 저장소와의 연결을 끊어준다.
2. git remote add origin [새롭게 연결할 Git 레파지토리 주소] 명령어를 입력한다.
3. git push origin master 명령어를 입력하여 소스코드를 정상적으로 업로드할수있게된다.
728x90