branch rename git code example
Example 1: git rename branch
git branch -m <oldname> <newname>
git branch -m <newname>
git branch -M <newname>
Example 2: git rename remote branch
git branch -m <old_name> <new_name>
git push <remote> --delete <old_name>
git push <remote> :<old_name>
git push <remote> <new_name>
git push <remote> -u <new_name>
Example 3: rename branch git
git branch -m <new_name>
Example 4: git rename local branch
git branch -m <oldname> <newname>
Example 5: edit branch name git
$ git checkout Branch-Name-You-Want-to-Change
$ git branch -m New-Branch-Name
Example 6: 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>