singmotor
singmotor

Reputation: 4180

Any way to recover deleted GitHub remote branch (that was deleted locally also)

I deleted everything. Deleted the remote branch via the webUI, and then removed the ENTIRE repository from my local machine and re-cloned it to the same spot.

Is there any way on earth to recover that deleted branch? In looking at the web UI, there's no record of my deleting the branch, or the pull request I attempted to make with it.

Upvotes: 0

Views: 411

Answers (2)

dave
dave

Reputation: 1

I will try to help you. I have own guide when data on my mac was deleted files or I need to reinstall Mac OS. I prefer to use one recovery program – disc drill 3 check here https://www.cleverfiles.com/boot-mac-from-usb.html. First of all I create bootable Mac OS X USB drives for data recovery and after that soft scan my device and restore lost data.

Upvotes: 0

Daniel
Daniel

Reputation: 11192

If you have deleted your branch locally, remotely and it is not present when you type git reflog there is no way to use git to recover your branch.

Furthermore, due to the way git stores branches (in a single workarea, compared to SVN that stores each branch in a subdirectory) the probability of successfully recovering the branch using data-recovery tools is close to zero.

Upvotes: 1

Related Questions