How to change the name of branches locally and remotely in Git?
Originally posted here!
Change the branch name locally
There is 2 scenarios here:
Scenario 1: If you are on the branch
If you are on the branch which you want to change the name then you can use this
git branch -m new-name-of-branch
command.
Scenar...
melvingeorge-me.hashnode.dev3 min read