git log -1 -- [file path]
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.