Git : 원격 repository의 연결 url 변경
맨 처음 로컬에 Git repository를 아래처럼 세팅 했을 때를 전제하고 아래 연결 url을 변경한다.
초기 세팅 시에 네이밍 한 origin에 주목해야 한다.
원격 repository 연결 url을 변경 시에 내가 로컬에 세팅한 원격 repository 이름을 알아야 연결 url 변경이 잘 되기 때문이다.
$ git init
$ git remote add origin [github Repository 주소]
$ git pull origin master
( = git fetch origin + git merge origin/master )
git remote -v
현재 로컬에서 연결되어 있는 원격 Repository의 주소 확인하기
git remote set-url origin Git_Repository_url(HTTPS)
현재 로컬에서 연결되어 있는 원격 Repository의 주소 확인하기
[예제]
$ git remote -v # View existing remotes origin https://github.com/user/repo.git (fetch) origin https://github.com/user/repo.git (push) $ git remote set-url origin https://github.com/user/repo2.git # Change the 'origin' remote's URL
'GitHub' 카테고리의 다른 글
GitHub : 커밋 시 'HEAD detached at SHA-1.. ' 메시지가 나오며 push가 되지 않을 때 (0) | 2017.04.27 |
---|---|
GitHub_Git Bash : SSH키 만들기 (0) | 2017.04.27 |
GitHub_Git Bash : Branch란? Branch 만들기 & 확인 (0) | 2017.04.27 |
GitHub_Git Bash : remote 저장소 push하려는데 reject될때 조치방법 (0) | 2017.04.27 |
GitHub_Git Bash : commit 히스토리를 push 하기 전에 취소 & 복구시키기 (0) | 2017.04.27 |