Is it possible in Git to list all the previous versions of a given line in a file by the line number?
The reason why I would find it useful is to be able to easier troubleshoot a problem based on logged stack trace report.
i.e. I have a undefined method exception
logged at a line 100 of a given file. The file is included in plenty of commits which caused the given line might have 'traveled' up and down the file even without any changes made to it.
How would I print out the content of line 100 of a given file across last x commits?