git push rename local branch to remote code example
Example 1: rename branch git
git branch -m <new_name>
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>