devroom.io/drafts/2010-08-09-rename-a-git-branch.md
Ariejan de Vroom dbae98c4c0 Moar updates
2013-03-24 14:27:51 +01:00

495 B

title kind slug created_at tags
Rename a git branch article rename-a-git-branch 2010-08-09
git
branch
tip

In git, branching is cheap and easy. You do it all the time (you're not? Well, you should). Sometimes, though, you create a new feature branch, only to come to the conclusion later that the name you gave it does not cover the stuff you've been doing.

No problem for git! Renaming a branch is really easy:

git branch -m old_branch new_branch

That's all. ~