Git,  Programming

[Git] Remote 명령어

remote 명령어는 git의 원격 저장소를 remote 하는데 사용되는 명령어다. git remote -v 명령어를 통해 현재 연결된 remote server를 확인 할 수 있다.

$ git remote -v
# View existing remotes
origin	/user/km.hero.lee/00_Git_Repo/01_A.git (fetch)
origin	/user/km.hero.lee/00_Git_Repo/01_A.git (push)

git remote rename [Origin] [Destination] 을 통해 remote 이름을 바꿀 수 있다.

$ git remote rename old_origin new_origin

2. Remote server 수정

우리가 지정한 remote server 주소를 수정할 수 있다.

$ git remote set-url [Previous Remote] [New URL]

$ git remote -v
origin	ssh://future@imot1/home/git/myproj.git (fetch)
origin	ssh://future@imot1/home/git/myproj.git (push)
$ git remote set-url origin ssh://future@localhost:10022/home/git/myproj.git
$ git remote -v
origin	ssh://future@localhost:10022/home/git/myproj.git (fetch)
origin	ssh://future@localhost:10022/home/git/myproj.git (push)

Reference

Leave a Reply

Your email address will not be published. Required fields are marked *