How to find a deleted file in the project commit history?
If you do not know the exact path you may use git log –all –full-history — “**/thefile.*” If you know the path the file was at, you can do this: git log –all –full-history — <path-to-file> This should show a list of commits in all branches which touched that file. Then, you can find the … Read more