GitNotes.3-2.md
본 문서는 Git Notes for Professionals (라이센스:CC-BY-SA) 를 한글로 번역한 문서입니다. 번역상 오류가 있을 수 있으므로 정확한 내용은 원본 문서를 참고하세요.

Section 3.2: Git 원격 저장소의 URL 변경하기

우선 기존 저장소 정보를 아래와 같이 확인한다:

git remote -v # origin https://github.com/username/repo.git (fetch) # origin https://github.com/usernam/repo.git (push)

이제, 변경하고자 하는 저장소의 URL 정보를 새로 설정한다:

git remote set-url origin https://github.com/username/repo2.git # Change the 'origin' remote's URL

새로운 저장소의 URL 정보가 정상적으로 반영되었는지를 다시 확인한다:

git remote -v # origin https://github.com/username/repo2.git (fetch) # origin https://github.com/username/repo2.git (push)

[출처] https://books.goalkicker.com/GitBook/ (CC BY-SA)

반응형

+ Recent posts