우선 git remote -v
명령을 사용하여 현재의 원격 저장소 URL을 확인합니다.
$ git remote -v
# View existing remotes
origin ssh://git-repo@example.com/repo.git (fetch)
origin ssh://git-repo@example.com/repo.git (push)
기존 원격 저장소 URL을 변경은 git remote set-url
명령어를 사용합니다.
명령어에는 두개의 파라메터를 넣어줍니다.
- 기존 원격 저장소 이름:
origin
- 변경할 원격 저장소 URL :
ssh://git-repo@example.com:1022/repo.git
$ git remote set-url origin ssh://git-repo@example.com:1022/repo.git
변경이 잘 되었는지 확인해봅니다.
$ git remote -v
origin ssh://git-repo@example.com:1022/repo.git (fetch)
origin ssh://git-repo@example.com:1022/repo.git (push)
'개발도구 > git' 카테고리의 다른 글
Gitlab Shell runner 를 사용한 C/C++ Application에 대한 CI/CD 구현 (0) | 2021.06.26 |
---|---|
[DevTool] Gitlab 설치 및 설정 @ Ubuntu 20.04 (0) | 2021.06.19 |
Git - blame (0) | 2019.09.16 |
Ubuntu(18.04)에 GitLab 설치하고 설정하기 (0) | 2018.11.21 |
git log 시각화 옵션과 단축옵션 사용 (0) | 2018.07.06 |