I decided to try GitHub for the first time and already managed to delete all my files in my most important project while playing around. Here is my console history:
git init
git remote add origin https://github.com/...
git add .
git config --global user.email (...)
git config --global user.name (...)
git reset --hard // amazing move by me
I searched for many ways to recover this. One recommended was:
git fsck --lost-found
but it only returns:
missing tree 4b825dc642cb6eb9a060e54bf8d69288fbee4904
dangling tree 3178c349021f733a9fa7fa0fabd2ac34f8841bdd
and no blobs. So is there no hope to recover it?