I've got a file that's been installed on my system that is known to be part of a git repo. I'd like to find out which commit(s) (re-)introduced that version of that file, ie which commit is responsible for putting the file in its current state.
I know that the file is in the repo because git show $(git hash-object $the_file)
works.
At this point I don't really need a solution to this example problem, I'm more just hoping to learn a bit more about how to navigate git's data structures.