How to Rename Remote GIT branch

If you had named a git branch incorrectly and had pushed the branch to remote repository. Follow the steps listed below to rename the remote branch: Rename the local branch.  If you are on the branch then, git branch -m <new-name> If you are not on the branch then, git branch -m <old-name> <new-name>    Delete … Continue reading How to Rename Remote GIT branch

Advertisement