컴공생의 다이어리
[Git] 원격 저장소 주소 변경 본문
Git 원격 저장소 주소 변경
기존 원격 저장소 주소를 변경하기 위해서는 git remote set-url 명령어를 사용하면 된다.
변경하기 전 현재 로컬 git 저장소가 어느 원격 저장소와 연결되어 있는지 보고 싶다면 아래와 같이 git remote -v 명령어를 입력해 확인할 수 있다.
git remote -v
# origin https://github.com/user/repo.git (fetch)
# origin https://github.com/user/repo.git (push)
확인 후 git remote set-url origin <변경할 원격 저장소 주소> 를 입력하면 원격 저장소 주소가 변경된다.
git remote set-url origin https://github.com/user/변경할repo.git
http://minsone.github.io/git/github-managing-remotes-changing-a-remotes-url
728x90
'Development > Git' 카테고리의 다른 글
[Git] 여러 커밋(commit) 하나로 합치기 (1) | 2021.12.19 |
---|---|
[Git] 커밋(commit)들의 모든 작성자(Author) 일괄 변경 (0) | 2021.12.11 |
[GitLab] 깃랩 You are not allowed to push code to protected branches on this project 에러 (0) | 2021.11.23 |
[GitHub] 깃허브 초대된 저장소(repository) 탈퇴하기(떠나기) (0) | 2021.11.22 |
[Git] .gitignore 자동 생성 (0) | 2021.11.09 |
Comments