I just deleted the wrong branch with some experimental changes I need with git branch -D branchName.
How do I recover the branch?
|
I just deleted the wrong branch with some experimental changes I need with How do I recover the branch? |
|||
|
|
|
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
|
||||
|
If you know the last SHA1 of the branch, you can try
You can find the SHA1 using |
|||||
|
|
|
First: back up your entire directory, including the .git directory. Second: You can use 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 |
|||