how (if possible) to find a line in a file, including all its corrections?
The reason for this is that I know that some line was in my foo.bar file somewhere in the past, but has been deleted since then. There are many changes in the file, so manual search takes a lot of time. I need a tool that will download all versions of the foo.bar file and look for my line in each revision.
If possible, it would be great for me to search the directory, not just one file (but also all versions). It's not obligatory.
The only solution I came with is to write a python script to export changes by revision and always read the file and search for the string using find () .
source share