Given a file that came from some version of a repository, and may have since been modified, is there a good way to identify the version that it (most likely) came from? Something, I would expect, along the lines of comparing it to all the file's versions (or enough of them) and choosing the one with the smallest diff.
My use case: Over the years I have written and set loose various latex styles that are still in use. Much of the time there was no official "release" and no version number, and sometimes I forgot to update the version number. I now regularly get questions about this or that file. I'm using mercurial to keep track of the styles' history (some of them retroactively), and it would be handy to quickly find a script's place in history so I can tell if I'm dealing with a problem I fixed already.
I'm interested in how to match a file against repo history. The forward-looking solution is clear: avoid the problem by always using version numbers. As this answer to a related question suggests, the KeywordExtension could automate version numbers. Since its use is not recommended, I would also welcome suggestions for a "better" approach.