I need to search the history of a specific file in a git repository to find a line that is gone. The commit message will not have any relevant text to search on. What comm
How about git log --stat | grep 'filename' to begin narrowing it down?
git log --stat | grep 'filename'