개발(Web)/VCS

[Git/GitHub] Renaming a Remote Repository

shinyelee 2022. 9. 8. 16:45

[깃/깃허브] 원격 저장소(리모트 레포지토리) 이름 바꾸기

이름을 바꾸고자하는 레포지토리에서 Setting을 클릭.
원하는 이름 설정 후 Rename 클릭.

// IDE에서 터미널 열고

remote -v
// 1. 저장소 위치 먼저 확인

remote -v set-url origin 깃허브주소
// 2. 저장소 위치 바꾼 후

remote -v
// 3. 변경된 저장소 위치 재확인

원격 저장소의 이름이 바뀌었으니, 로컬 저장소에서도 경로를 바꿔줘야 한다.


참고

 

Renaming a repository - GitHub Docs

When you rename a repository, all existing information, with the exception of project site URLs, is automatically redirected to the new name, including: Issues Wikis Stars Followers For more information on project sites, see "About GitHub Pages." In additi

docs.github.com

 

[Git] 깃허브 Repository 이름 변경하기

Repository 이름을 변경하고 로컬 저장소에서 변경된 remote 저장소의 URL로 재설정하는 방법에 대해서 알아보겠습니다. [Step 1] 변경할 Repository에서 Setting 클릭 [Step 2] 이름을 변경하고 Rename 클릭 [S..

minny27.tistory.com

반응형