develog

[git] multiple repository 에 push 하기 본문

카테고리 없음

[git] multiple repository 에 push 하기

냐옴 2024. 5. 3. 17:45

 

remote origin 이 등록되어 있지 않으면 등록한다

## remote origin 을 등록한다
$ git remote add origin git@github.com:userAA/toy-project

## remote 정보 확인
$ git remote -v
origin	git@github.com:userAA/toy-project (fetch)
origin	git@github.com:userAA/toy-project (push)

 

origin 에 push url 를 하나 더 등록한다

## push url 을 하나 더 등록한다
$ git remote set-url --add --push origin git@github.com:userBB/toy-project

## remote 정보 다시 확인
$ git remote -v
origin	git@github.com:userAA/toy-project (fetch)
origin	git@github.com:userAA/toy-project (push)
origin	git@github.com:userBB/toy-project (push)

 

push 해서 2개 url 에 등록되는지 확인한다

## push 명령 한번으로 2개 repo 에 push 된다
$ git push -u origin master
$ git push

 

추가한 push url 을 삭제하는 방법

## push url 을 삭제한다
$ git remote set-url --delete --push origin git@github.com:userBB/toy-project

 

Comments