git remote url 변경 전
$ git remote -v
origin https://github.com/tj/commander.js.git (fetch)
origin https://github.com/tj/commander.js.git (push)
git remote push url 변경
$git remote set-url --push origin <원격지 저장소 주소>
$git remote set-url --push origin https://github.com/shelljs/shelljs.git
결과
$ git remote -v
origin https://github.com/tj/commander.js.git (fetch)
origin https://github.com/shelljs/shelljs.git (push)
git remote push, fetch url 변경
$git remote set-url origin <원격지 저장소 주소>
$git remote set-url origin https://github.com/shelljs/shelljs.git
결과
$ git remote -v
origin https://github.com/shelljs/shelljs.git (fetch)
origin https://github.com/shelljs/shelljs.git (push)
'Git' 카테고리의 다른 글
[Git] Linux 에서 repo스크립트 다운로드 할 원격지 설정 (0) | 2019.04.23 |
---|---|
[Git] git 특정 버전 다운로드 (Linux) (0) | 2019.04.18 |
[Git] git merge conflict ( git checkout branch ) (0) | 2019.04.09 |
[Git] gerrit merge commit 생성됨 (0) | 2019.04.08 |
[Git] 저장소 히스토리까지 전체 복사 (1) | 2018.05.29 |