[git] local repository의 remote URL 변경

우디혜 2020. 11. 21. 20:16

[공식 문서 참조]

 

1. 이전 계정의 깃 repository와 연결된 폴더로 이동 후

 

2. 현재 remote 정보 확인

git remote -v
> origin  https://github.com/USERNAME/REPOSITORY.git (fetch)
> origin  https://github.com/USERNAME/REPOSITORY.git (push)

 

3. 바꾸고자 하는 remote url을 set-url 명령어와 함께 입력

git remote set-url origin https://github.com/USERNAME/REPOSITORY.git

 

4. 바뀐 remote 정보 확인

git remote -v
> origin  https://github.com/USERNAME/REPOSITORY.git (fetch)
> origin  https://github.com/USERNAME/REPOSITORY.git (push)