[Git] branch 이름 변경하기
2023. 3. 21. 15:20ㆍ개발공부 기강잡자/Git
로컬저장소 branch 이름 변경
git branch -m [old name] [new name]
원격저장소 branch 이름 변경
원격의 new_branch에 로컬저장소 내용을 push한 후 old_branch를 삭제
git push origin new_branch
git push origin --delete old_branch
- 명령어 한줄로 표현하는 방법
git push origin :old_branch new_branch
→ old_branch 삭제 후 new_branch 생성
'개발공부 기강잡자 > Git' 카테고리의 다른 글
[Git]git pull 할 때 fatal: Need to specify how to reconcile divergent branches. 오류 (0) | 2023.03.21 |
---|---|
[Git - 지옥에서 온 git] 5일차 - 원격 저장소 remote repository (0) | 2022.08.11 |
[Git - 지옥에서 온 git] 4일차 - git의 원리 공부 (merge/conflit/3-way merge) (0) | 2022.08.09 |
[Git - 지옥에서 온 git] 4일차 - git의 원리 공부 (reset/checkout) (0) | 2022.08.09 |
[Git - 지옥에서 온 git] 4일차 - git의 원리 공부 (branch와 HEAD) (0) | 2022.08.09 |