How to rename a git branch
Rename local branch
To rename a local branch in git
Move on the branch you want to rename
git checkout -b feature/wrong-name
Rename it locally
git branch -m feature/new-awesome-name
⚡️ Bonus tip
If you have ohmyzsh installed, you can use its s...
giuliachiola.hashnode.dev2 min read