In Git, how do I find the SHA-1 IDs of all blobs in the object database that contain a string pattern? git-grep provides only the file paths and not the sha1 IDs.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
I don't think there's an easy way of iterating over every object in the object database, although you'll find scripts that people have written that do that. What's the problem that you really want to solve? An alternative, if you want to look in the index for every blob that contains a string ("hello", say) would be to do:
Or if you want to look for all the blobs in the commit
And feed that to [some command I don't know] that will give you the SHA1 of the blob at that path in that particular commit. |
|||||
|
|
You can try a git log using the pickaxe option:
See "How to find commit SHA1 of a tree containing a file containing a given string" |
|||
|
|