How to rename a branch on Git

You created a branch locally, but need to change the name? Ease! Just run the command below:

git branch -m <NEW_NAME>

👍