9504 shaares
222 private links
222 private links
- Rename your local branch
git branch -m old-name new-name
or simplygit branch -m new-name
for the current branch. - Delete the old-name remote branch and push the new-name local branch
git push origin old-name new-name
- Reset the upstream branch for the new-name local branch
git push origin -u new-name