eolas/neuron/6ee38802-781e-4c65-8c64-56c9bccc4460/Rename_a_branch.md
2024-11-04 14:26:42 +00:00

192 B

tags
git
procedural

Rename a branch

In local development

git branch -m <old_name> <new_name>

Update the remote

git push origin -u <new_name>