Problem
Yesterday I had a local git repository that contained a .py and a .csv file. The changes that I made to them were not committed since earlier this week but they were all saved locally on my computer.
Last night I had an automatic windows 10 update and shut my computer down. When I opened it up this morning, the repository was reverted to a previous state (before what is currently on Master) without my doing anything. My files are now gone.
What I've Tried
I contacted Microsoft support (I'm using Windows 10) and they said that it wasn't caused by the update and that the files cannot be found anywhere on my computer/there's nothing they can do.
I also used a data recovery program (EaseUS) but none of the files show up
I have also looked at some similar questions on here but have gotten nothing:
a. unstaged files gone after git reset --hard
using: git fsck --full --unreachable --no-reflog, and git cat-file -p SHA don't return any of my file names
Looking at the recently opened section of my IDE does not show anything. The file paths still show up on the recently opened section of excel however (for csv file) but it cannot open it because it doesn't exist anymore
Are there any commands I can run to get my old files back? Or even see if they still exist?
EDIT
I understand that my files are most likely gone but why would this happen? I never used any commands to do this. Even if the files cannot be recovered, why or how could this happen without my doing anything other than shutting down my computer?