[Solved] Can I retrieve my files which were deleted from the recycle bin too?


You have not included your files in your git index before commit git will not keep track of that file changes in the commit. As by default ignored files are not added in git index I guess it is not added to the commit.

In that case, using Git, you can’t.

But if you are using an IDE which maintains local history (e.g. Any JetBrains IDE, Netbeans etc.) you can get the files from the backup of the IDE.

  1. For NetBeans go to history tab in top of editor.
  2. For JetBrains IDE (e.g. IntelliJ, WebStorm, PyCharm etc.) Open context menu of the file/folder from project explorer. And Select Show History or Local History -> Show History. link

2

solved Can I retrieve my files which were deleted from the recycle bin too?