ローカルブランチ名を変更
$ git branch -m [変更前ブランチ名] [変更したいブランチ名]
変更イメージ
$ git branch // ローカルブランチ確認
feature/#1_bugphenix
* master
$ git branch -m feature/#1_bugphenix feature/#1_bugfix
$ git branch
feature/#1_bugfix
* master
こうなります。
エンジニアブログ
$ git branch -m [変更前ブランチ名] [変更したいブランチ名]
変更イメージ
$ git branch // ローカルブランチ確認
feature/#1_bugphenix
* master
$ git branch -m feature/#1_bugphenix feature/#1_bugfix
$ git branch
feature/#1_bugfix
* master
こうなります。