본문 바로가기

Programming/Git

[Git] Git remote repository 저장소 주소 변경

 

기존 Github에 올라가있는 프로젝트를 새로운 저장소로 옮기고 싶을 때는 repository 주소를 변경해주면 되는데

 

1. 현재 연결된 주소를 확인할 때

git remote -v

// 결과
origin https://github.com/[깃헙아이디]/[프로젝트명].git (fetch)
origin https://github.com/[깃헙아이디]/[프로젝트명].git (push)

 

2. 새로운 주소 연결하기

2-1. remote set-url로 연결

git remote set-url origin [새로운 저장소 URL]

// example
git remote set-url origin https://github.com/[깃허브아이디]/[프로젝트명].git

 

2-2. 기존 연결을 지우고 새로 연결

git remote remove origin
git remote add origin [새로운 저장소 URL]

//example
git remote remove origin
git remote add origin https://github.com/[깃허브아이디]/[프로젝트명].git

 

3. 바뀐 주소가 맞는지 git remote -v로 확인

 

4. 프로젝트 push하기

git init    // directory에 git 생성

git add .   // 소스 트리에 update된 모든 파일 추가
git add [파일명] // 소스 트리에 특정한 파일 추가

git commit -m 'commit-message' // commit 메세지 남기기
git push origin master // master 브랜치에 push

 

5. Github에 잘 올라갔는지 확인