2025-02-25 notes git

rename a branch that has already been pushed

git rename local and remote branch

  1. Rename current branch
git branch -m my-new-branch-name
  1. Rename remote branch (will delete the old remote branch)
git push -u origin :my-old-branch-name my-new-branch-name

https://stackoverflow.com/a/70003418