2025-02-25
notes
git
rename a branch that has already been pushed
git rename local and remote branch
- Rename current branch
git branch -m my-new-branch-name
- Rename remote branch (will delete the old remote branch)
git push -u origin :my-old-branch-name my-new-branch-name