rename branch locally and remotely git code example

Example 1: git rename branch

git branch -m <oldname> <newname> # Any Branch
git branch -m <newname> # Current Branch

# For windows if you get "Branch already exists" error
git branch -M <newname>

Example 2: edit branch name git

$ git checkout Branch-Name-You-Want-to-Change
$ git branch -m New-Branch-Name

Example 3: rename branch git

git branch -m <new_name> //currenct branch switch name 
git branch -m <select_branch_name> <new_branch_name>

Example 4: rename remote branch in git

git push origin :<branch_to_rename>
git checkout -b <new_branch_name>
git push --set-upstream origin <new_branch_name>