[Git] local, remote branch 이름 변경 방법

Yuri Lee·2021년 7월 7일
0

git branch 이름을 변경하는 방법이다.

  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에서 삭제


출처: https://ddunnimlabs.tistory.com/153 [뚠님 연구소]

profile
Step by step goes a long way ✨

0개의 댓글