Git Repository(원격 저장소) 변경 (feat. Git Bash)

git remote -v

현재 로컬 저장소에서 연결되어 있는 원격 저장소의 주소를 확인

$git remote -v

origin {원격 저장소1 주소} (fetch)
origin {원격 저장소1 주소) (push)

git remote set-url origin {변경할 원격 저장소 주소}

$git remote set-url origin {원격 저장소2 주소}

origin {원격 저장소2 주소} (fetch)
origin {원격 저장소2 주소} (push)