Back-end/DEV notes

git 저장소 주소 repository 변경하기

cheersHena 2022. 3. 13. 16:08
반응형

git 저장소 주소 repository 변경하기

Git에서 remote repository를 다른 주소 URL로 변경해 보자.
예를 들어 기존의 repository에서 형상관리를 하다가 새로운 repository를 생성 한 경우,새 repository로 형상관리를 하겠다라고 한다면 기존의 주소를 새로운 저장소 주소로 바꿔주어야 한다.

  1. 먼저 현재 연결된 주소를 확인.
    //결과
    origin  https://github.com/user/repo1.git (fetch)
    origin  https://github.com/user/repo1.git (push)
  2. git remote -v
  3. remote set-url
    set-url 로 새로운 url 을 셋팅하는 방법.ex)
  4. $ git remote set-url origin https://github.com/user/repo1.git
  5. git remote set-url origin [새로운 repo 주소]
  6. remote remove / add
    remove로 기존 연결을 끊고 새로 추가하는 방법.
    2.2
    git remote add origin https://github.com/user/repo1.git
    🚫 Remote origin already exists 에러
    기존의 repository가 연결된 상태에서 add를 하면 발생하는 에러이다.
    위의 1 또는 2번의 방법으로 해결할 수 있다.
  7. 2.1 git remote remove origin
  1. git remote -v 으로 원하는 repo 주소가 잘 연결되어 있는지 확인한다.
  1. 소스를 추가/커밋/푸시한다.
  2. //git push 순서 0. git init #현재 디렉토리에 깃 생성 1. git add . #변경된 모든 소스 추가 git add [특정파일명] #특정 소스파일 추가 2. git commit -m 'commit-message' #커밋 3. git push origin master #최종 푸시로 깃서버에 uplaod.
  3. 깃허브 웹 repository로 가서 소스가 잘 업로드 되었는지 확인한다.

 

 

 

반응형