command to rename branch in git code example
Example 1: rename branch git
git branch -m <new_name>
Example 2: git rename local branch
git branch -m <oldname> <newname>
Example 3: edit branch name git
$ git checkout Branch-Name-You-Want-to-Change
$ git branch -m New-Branch-Name
Example 4: git rename branch
git push origin :old-name new-name
Example 5: git rename branch
git push origin –u new-name