ETC 코딩/Github

git branch 이름 바꾸기 rename하는 방법

세리둥절 2022. 2. 15. 13:26
반응형

✔️ 필요성

git branch 이름을 바꾸고 싶을 때가 있다

 

 

✔️ local branch 이름 바꾸기

이름을 바꾸고자 하는 branch로 이동한 다음에 새로운 이름으로 바꿔준다

git checkout old_name
git branch -m new_name

 

 

✔️ remote branch 이름 바꾸기

과거의 이름을 가진 remote branch를 없애고(?) 새로운 이름을 가진 remote branch로 push한다

git push origin :old_name
git push origin new_name
반응형