git branch name change 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: change local branch name
git branch -m <newname>