changing the branch name in local git code example
Example 1: git rename local branch
git branch -m <oldname> <newname>
Example 2: edit branch name git
$ git checkout Branch-Name-You-Want-to-Change
$ git branch -m New-Branch-Name
git branch -m <oldname> <newname>
$ git checkout Branch-Name-You-Want-to-Change
$ git branch -m New-Branch-Name