Steps to Reproduce:
1.Go near this fucking shit editor.
2.Commit the deadly sin of touching the source control options.
🤣
Nowadays the warning even says that this cannot be undone. Maybe that wasn’t present in 1.15, though.
If the “changes” are all your files, discarding them for me means basically delete my files, you know, the ones you are trying to add.
Having done exactly 0 research, I going to assume it’s one of those “DO NOT PRESS OKAY UNLESS YOU ARE EXPERIENCED AND KNOW WHAT YOU ARE DOING” and someone went “pffft I know what I’m doing. click now what does this option do…”
reading through it, it sounds like they opened a project in VSCode, and it saw that there was a local git repo already initialized, with 3 months of changes uncommitted and not staged. So the options there are to stage the changes (git add
) to be committed or discard the changes (git checkout -- .
). I guess they chose the discard option thinking it was a notification and i guess the filename would be added to gitignore or something? Instead, it discarded the changes, and to the user, it looked like VSCode did rm -rf
and not that this was the behavior of git. Since the changes were never committed, even git reflog
can’t save them.
Pretty sure the scary warnings in big bold text are more recent than this report.