Dev/Git
[Git] branch 이름 변경하기
믹-아
2020. 5. 20. 13:15
branch 이름을 feature/[name] 으로 관리중인데 자꾸 featrue 로 오타를 치게되더라... true 에 손이 익어서인가...
아무튼 그래서 이름 변경하는 법.
$ git branch -m [변경할_branch] [변경할이름_branch]
그럼 이렇게 쓰면 되겠다
$ git branch -m featrue/issue#1 feature/issue#1