로컬 Git 리모트 저장소 변경하기 터미널을 연다. 리모트 저장소를 바꾸고자 하는 프로젝트 디렉토리로 이동 현재 연결된 리모트 저장소 확인 $ git remote -v > origin git@github.com:USERNAME/REPOSITORY.git (fetch) > origin git@github.com:USERNAME/REPOSITORY.git (push) 리모트 저장소 변경 $ git remote set-url origin https://github.com/USERNAME/REPOSITORY.git 변경사항 확인 $ git remote -v # Verify new remote URL > origin https://github.com/USERNAME/REPOSITORY.git (fetch) > o..