rename a branch github code example
Example 1: rename branch git
git branch -m <new_name>
Example 2: edit branch name git
$ git checkout Branch-Name-You-Want-to-Change
$ git branch -m New-Branch-Name
Example 3: rename branch git
git branch -m <new_name> //currenct branch switch name
git branch -m <select_branch_name> <new_branch_name>
Example 4: how to change the name of the branch in git
git checkout <old_name>
git branch -m <new_name>
git push origin -u <new_name>
git push origin --delete <old_name>
Example 5: rename local branch github
git branch -m oldname newname