update branch name local git code example
Example 1: git rename local branch
git branch -m <oldname> <newname>
Example 2: 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>