List the commits that changed a file
Now that you know which commit sha deleted the file, you can easily do a git checkout from there and get it back.
If you omit the -1 option, it will list you all the commits in which that particular file was modified in reverse chronologial order.
git log -1 -- [file path]