eolas/neuron/4e66db01-35b6-4b9c-aab8-2a0429e30df2/Rename_a_branch.md
2024-11-14 14:15:53 +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>