2019. 9. 25. 11:23
유닉스*리눅스*SE
원격 저장소 URL 변경하기
기존 원격 저장소 URL을 변경하기 위해 git remote set-url 명령어를 사용합니다:
$ 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
$ git remote -v
# Verify new remote URL origin https://github.com/user/repo2.git (fetch) origin https://github.com/user/repo2.git (push)
두 개의 인자를 가집니다:
기존 원격 저장소 이름: origin
새로운 원격 저장소 URL : https://github.com/user/repo2.git
Troubleshooting 문제 해결
No such remote ‘[name]’
이 에러는 이름을 변경할 원격 저장소가 없음을 의미합니다.
관련 문서
'유닉스*리눅스*SE' 카테고리의 다른 글
[GIT] branch 이름 변경하기 (0) | 2019.10.07 |
---|---|
[git] git 명령어 관련 (0) | 2019.10.07 |
리눅서 서버용량 체크 (df/du) (0) | 2019.09.20 |
윈도우서버 IIS에서 apk 파일 다운로드 가능하도록 설정 (0) | 2019.09.20 |
NGINX + PHP-FPM에서 502 BAD GATEWAY 에러 해결방법 (0) | 2019.09.20 |