rename a local branch in git 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: change local branch name
git branch -m <newname>
Example 5: git rename branch
git branch –m old-name new-name
git push origin :old-name new-name
git push origin –u new-name
Example 6: rename local branch github
git branch -m oldname newname