2
I have a project in Git. I need to retrieve a file that was deleted several months ago.
If it were something that was now in the repository it would be trivial to find it, see its history and changes. But as it is something that has been removed, I am having difficulty getting the latest version of the file prior to its deletion.
For lack of a better alternative, I’m thinking of doing a binary search on commits... But I will be very grateful (and I believe many others will be) if they indicate a more efficient way to find the commit in which something has been removed.