rename branch git terminal 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 branch
git branch –m old-name new-name
git push origin :old-name new-name
git push origin –u new-name
Example 4: rename branch git
git branch -m <new_name> //currenct branch switch name
git branch -m <select_branch_name> <new_branch_name>
Example 5: 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>