git branch 이름을 변경하는 방법이다.
git checkout <변경할 branch name> // 변경할 branch로 checkout
git branch -m <새로운 branch name> // 새로운 이름으로 local branch의 이름을 바꿈
git push origin -u <새로운 branch name> // 새로운 이름으로 된 branch 를 remote에 push
git push origin --delete <이전 branch name> // 변경 전 branch 를 remote에서 삭제
출처: https://ddunnimlabs.tistory.com/153 [뚠님 연구소]