[DEV] 기록

[Git] 로컬 브랜치를 remote 마스터 브랜치로 push하는 방법

꾸준함. 2021. 11. 12. 16:58

개요

gitlab 버전업을 하면서 기존 repository를 신규 repository로 옮겨야 했습니다.

이때, 상용 브랜치를 master 브랜치로 push 해야 하는 상황이 발생했고 아래와 같은 명령어로 해결했습니다.

 

해결 방법

 

git checkout <로컬 브랜치명>

git push origin <로컬 브랜치명>:master

 

로컬 브랜치를 다른 브랜치로 push 하기 위해서는 아래와 같은 명령어를 사용하면 됩니다.

 

git checkout <로컬 브랜치명>

git push <remote> <로컬 브랜치명>:<push할 remote 브랜치명>

 

출처

https://stackoverflow.com/questions/5423517/how-do-i-push-a-local-git-branch-to-master-branch-in-the-remote

 

How do I push a local Git branch to master branch in the remote?

I have a branch called develop in my local repo, and I want to make sure that when I push it to origin it's merged with the origin/master. Currently, when I push it's added to a remote develop bran...

stackoverflow.com

 

반응형