Given the hash of a blob, is there a way to get a list of commits that have this blob in their tree?
|
5
|
|
|
|
|
|
Here it is as a shell script:
You pass the blob SHA1 as the first parameter and then any number of arguments to Update: and here is an optimised version in Perl, still quite short:
|
|||
|
|
|
I thought this would be a generally useful thing to have, so I wrote up a little perl script to do it:
I'll put this up on github when I get home this evening. Update: It looks like somebody already did this. That one uses the same general idea but the details are different and the implementation is much shorter. I don't know which would be faster but performance is probably not a concern here! Update 2: For what it's worth, my implementation is orders of magnitude faster, especially for a large repository. That Update 3: I should note that my performance comments above apply to the implementation I linked above in the first Update. Aristotle's implementation performs comparably to mine. More details in the comments for those who are curious. |
||||||||||
|
