eolas/DevOps/Git/Rename_a_branch.md
2022-12-09 08:30:05 +00:00

203 B

categories tags
DevOps
git

Rename a branch

In local development

git branch -m <old_name> <new_name>

Update the remote

git push origin -u <new_name>