git rename branch command line code example
Example 1: edit branch name git
$ git checkout Branch-Name-You-Want-to-Change
$ git branch -m New-Branch-Name
Example 2: change local branch name
git branch -m <newname>
Example 3: rename branch git
git branch -m <new_name> //currenct branch switch name
git branch -m <select_branch_name> <new_branch_name>