git branch rename local 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: 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: change local branch name
git branch -m <newname>
Example 5: git rename branch from local
1. 'Start by switching to the local branch which you want to rename:'
git checkout <old_name>
2. 'Rename the local branch by typing:'
git branch -m <new_name>
Example 6: rename branch git
git branch -m <new_name> //currenct branch switch name
git branch -m <select_branch_name> <new_branch_name>