Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I do not want to rename a remote branch, I want to rename a local one. What is the simplest way to rename a local branch without worrying about the remote?

share|improve this question

2 Answers

up vote 480 down vote accepted
git branch -m <oldname> <newname>
share|improve this answer
12  
easy but common and useful – Forrest Jul 7 '11 at 2:54
60  
@AdamDymitruk -- fwiw, I found this from a google search. I'm still kinda new to git, and in hindsight I should've guessed that the branch command would have it. It is nice to have an answer without having to guess which man page to look at -- and now I know that the branch command might be a good place to start for similar questions in the future ;) – MCory Dec 16 '11 at 22:57
2  
What I really wanted to know was whether this will necessarily effect the remote branch when/if you push – PandaWood Jan 23 '12 at 0:15
3  
@PandaWood: it will add the new branch when you push, but won't delete the old branch. If you use git push -f --mirror, then it will rename the branch on the remote, but you should only use this method if the remote is simply to be a copy of your current repository. See also this question: stackoverflow.com/questions/1526794/git-rename-remote-branch – siride Jan 23 '12 at 6:02
25  
@MCory +1 for stating that TFMs are often FU and that TFMs aren't always as useful as Google search. You know, I don't want to get a PhD in Git, I only want to help me be more productive in my software development. :) – ef2011 Oct 15 '12 at 2:48
show 1 more comment
git branch -m old_branch_name new_branch_name

The above command will work and immediately it will change your branch name. But you have to very careful using renamed branch name because still it will refer old master(for example) branch only.

If you want to push some changes into master after your local branch renamed into working_copy (example name)

git push origin working_copy:master (now changes will go to master branch but your local branch name is working_copy)

For more details you can view this post

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.