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

I just deleted the wrong branch with some experimental changes I need with git branch -D branchName.

How do I recover the branch?

share|improve this question

3 Answers

up vote 63 down vote accepted

You can use git reflog to find the SHA1 of the last commit of the branch. From that point, you can recreate a branch using

git branch branchName <sha1>
share|improve this answer
5  
Git tells you what the SHA1 was when the branch is deleted, so if you just delete it it might just be a few lines up in the command line. – seagullJS Dec 13 '12 at 1:04
Made my day, thank you man! – Rappster Mar 15 at 10:33

If you know the last SHA1 of the branch, you can try

git branch branchName <SHA1>

You can find the SHA1 using git reflog, described in the solution here.

share|improve this answer
How do I find the sha1? – Stefan Kendall Oct 26 '10 at 16:57
I've updated my answer on how to find the SHA1. – Chetan Oct 26 '10 at 16:59

First: back up your entire directory, including the .git directory.

Second: You can use git fsck --lost-found to obtain the ID of the lost commits.

Third: rebase or merge onto the lost commit.

Fourth: Always think twice before using -D or --force with git :)

You could also read this good discussion of how to recover from this kind of error.

EDIT: By the way, don't run git gc (or allow it to run by itself - i.e. don't run git fetch or anything similar) or you may lose your commits for ever.

share|improve this answer
1 and 4 are overkill IMO. – jwg Mar 21 at 11:07
yeah, that is why we use git, to avoid having to carry all that around. Every action you have committed is still available to you. – mateor May 3 at 5:26

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.