rename branche code example
Example 1: git rename branch
git branch -m <oldname> <newname>
git branch -m <newname>
git branch -M <newname>
Example 2: rename branch git
git branch -m <new_name>
Example 3: git rename local branch
git branch -m <oldname> <newname>
Example 4: edit branch name git
$ git checkout Branch-Name-You-Want-to-Change
$ git branch -m New-Branch-Name
Example 5: rename branch git
git branch -m <new_name> //currenct branch switch name
git branch -m <select_branch_name> <new_branch_name>
Example 6: git rename branch
git push origin :old-name new-name