git rename branch locally and remotely 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: rename branch git
git branch -m <new_name>
Example 3: change local branch name
git branch -m <newname>
Example 4: git diff with remote branch
git diff @{upstream}
Example 5: rename local branch github
git branch -m oldname newname