1. git checkout <변경할 branch name> // 변경할 branch로 checkout
2. git branch -m <새로운 branch name> // 새로운 이름으로 local branch의 이름을 바꿈
3. git push origin -u <새로운 branch name> // 새로운 이름으로 된 branch 를 remote에 push
4. git push origin --delete <이전 branch name> // 변경 전 branch 를 remote에서 삭제
반응형
'인프라 > Git' 카테고리의 다른 글
[Git] git conflict (0) | 2022.06.03 |
---|---|
[Git] git force 실수로 잃어버린 커밋 로그 복구하기 (0) | 2022.03.09 |
[Git] .gitignore 가 적용되지 않을때 (0) | 2022.01.18 |
[Git] 깃 초기설정 (0) | 2022.01.14 |
[Git] git branch & commit convention 정리 (0) | 2022.01.12 |