개발관련/Git

로컬 Git 브랜치를 원격의 마스터 브랜치로 푸시하는 방법

Rateye 2021. 11. 22. 10:39
728x90
반응형
질문 : 로컬 Git 브랜치를 원격의 마스터 브랜치로 어떻게 푸시합니까?

내 로컬 리포지토리에 develop이라는 브랜치를 가지고 있으며 원본으로 푸시 할 때 원본 / 마스터와 병합되는지 확인하고 싶습니다. 현재 푸시하면 원격 개발 브랜치에 추가됩니다.

어떻게 할 수 있습니까?

답변

$ git push origin develop:master

또는 더 일반적으로

$ git push <remote> <local branch name>:<remote branch to push into>
출처 : https://stackoverflow.com/questions/5423517/how-do-i-push-a-local-git-branch-to-master-branch-in-the-remote
728x90
반응형