반응형
Git은 Remote branch의 이름 변경이 불가능 하기에 local에서 이름 변경후 remote의 브랜치 삭제 후 변경된 local의 브랜치를 push 한다
# 현재 remote의 branch 이름 : oldbranch
# 변경하고자 하는 branch 이름 : newbranch
git branch -m oldbranch newbranch
git push origin :oldbranch
git push origin newbranch
반응형
'[====== Development ======] > Etc' 카테고리의 다른 글
Manager vs. Controller vs. Handler (0) | 2021.10.19 |
---|---|
디자인 관련 참고 (0) | 2021.09.24 |
xcopy (0) | 2021.08.30 |
[Inno Setup] command Line으로 실행하기 (0) | 2021.08.27 |
Boonean 변수명짓기 (0) | 2021.08.04 |