시그마 삽질==six 시그마

현재 브랜치를 마스터로 만들기 본문

프로그래밍/GIT

현재 브랜치를 마스터로 만들기

Ethan Matthew Hunt 2020. 3. 6. 00:43
git checkout better_branch
git merge --strategy=ours master    # keep the content of this branch, but record a merge
git checkout master
git merge better_branch             # fast-forward master up to the merge

출처:https://stackoverflow.com/questions/2763006/make-the-current-git-branch-a-master-branch

'프로그래밍 > GIT' 카테고리의 다른 글

git repository 복사하기  (0) 2020.08.12
git 히스토리 초기화  (0) 2020.08.10
git branch/checkout  (0) 2020.08.10
이미 tracking된 원격 저장소에 .gitignore 적용  (0) 2020.03.06
Git Reset/ Revert  (0) 2020.03.06
Comments