I do not want to git: rename remote branch

I want to use simplest way to rename local branch, which is not pushed to remote branch.

link|improve this question

49% accept rate
feedback

1 Answer

up vote 53 down vote accepted
git branch -m <oldname> <newname>
link|improve this answer
6  
Are RTFMs sometimes allowed on SO? :) – Adam Dymitruk Jul 6 '11 at 5:20
3  
@adymitruk: it was an easy 35 points... – siride Jul 6 '11 at 14:27
2  
easy but common and useful – Forrest Jul 7 '11 at 2:54
3  
@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
1  
What I really wanted to know was whether this will necessarily effect the remote branch when/if you push – PandaWood Jan 23 at 0:15
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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