Git branch 명 변경하는 법

KiJeong·2022년 11월 4일
1

과정

local 브랜치 명 변경 후 remote 브랜치 명을 변경한다.

1. local 브랜치 명 변경

git branch -m {기존 브랜치 명} {새 브랜치 명}
ex) git branch old_branch_name -m new_branch_name

2. remote 브랜치 제거 후 이름 변경한 local 브랜치 반영

remote 브랜치 제거

git push origin :{브랜치명} 명령으로 리모트 브랜치를 제거한다.

> git push origin :old_branch_name
remote: Processing changes: refs: 1, done
To http://jeongeun.github.com/a/Repo
 - [deleted]           old_branch_name

local 브랜치 push

git push origin new_branch_name

0개의 댓글