By mistake, I used git add . so all files are added to the viewport. I want to delete all these files from the viewport.
git add .
I tried
git clean -fdx git clean -df
but it does not work.
you need to use git reset --mixed .--mixed if to clear the area of ββthe scene / cache / index.
git reset --mixed
--mixed
If so, then git reset HEAD will do the job
git reset HEAD