rename remote branch in git

Shell
git push origin :<branch_to_rename>
git checkout -b <new_branch_name>
git push --set-upstream origin <new_branch_name>$ git checkout Branch-Name-You-Want-to-Change
$ git branch -m New-Branch-Namegit branch -m <newname>

Source

Also in Shell: