로컬 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) > origin https://github.com/USERNAME/REPOSITORY.git (push)
참고자료
- https://docs.github.com/en/get-started/getting-started-with-git/managing-remote-repositories
'IT > Git' 카테고리의 다른 글
[git] pr 코드리뷰에 남긴 코멘트가 pending 상태인 경우 해결법 (0) | 2022.12.16 |
---|---|
[Git] 깃 원격브랜치를 이용한 협업 (0) | 2020.12.02 |