ローカルブランチ名を変更
$ 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
こうなります。