1

I think I accidentally deleted a stash of mine in Eclipse. I still have the project itself. Is there a way to recover the deleted stash WITHOUT using a command line? My workstation just has the Git integration for Eclipse to work with.

(There are other similar questions, but their cases are a tad different.)

D. Thaler
  • 79
  • 6

1 Answers1

1

Not that I know of: restoring a deleted stash usually involve git fsck --unreachable.

My workstation just has the Git integration for Eclipse to work with.

Assuming Windows, even as a non-admin, you can add Git in command line through the portable archive PortableGit-2.20.0-64-bit.7z.exe that you can uncompress anywhere you want.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
  • Used that download and misc. commands on the page you linked, found the hash in a few minutes and was able to recover my stash. Thanks a ton! – D. Thaler Dec 11 '18 at 15:21