How can I list all versions of all files in a git repository?
(For example for listing all files that ever contained a certain string)
This list could be used to cat the file.
|
How can I list all versions of all files in a git repository? (For example for listing all files that ever contained a certain string) This list could be used to cat the file. |
||||
|
First of all, there's very little chance you want to do this by listing blobs. A blob is just raw data; it doesn't know what file it's part of. The true answer depends a little bit on what exactly you're trying to accomplish. For example, do you need to search blobs that are part of commits which aren't even accessible from the commit history? If you don't, here are a couple thoughts. Perhaps the pickaxe search of
Depending on your end goal, this might be way better than what you suggested - you'll actually see how the string was added or removed. You can of course use the information you get to cat the entire file, if you so desire. Or maybe you want to list revisions with |
|||
|
|
git-showa blob, you'll be able to match it back up to the name. You've also lost some critical information already: what commit the blob was part of. – Jefromi Oct 20 '09 at 16:03git log -S. – Jefromi Oct 20 '09 at 16:07