Jonathan Nieder venit, vidit, dixit 30.08.2010 16:16: > Chris Patti wrote: > >> That's great, thanks! That gets me the file names. Now, how do I get >> to the contents of each file? > > Why not "git diff --raw" (or its plumbing equivalent "git diff-tree")? That's what I meant by "diff family" ;) In fact, "git diff --raw --name-only oldrev newrev" gives the nicest listing. It seems Chris has to check full file contents, i.e. he'll have to loop over this list (as before), but I guess he'll need to replace his "show $blob" by "show newrev:$filename" (or, alternatively, parse the output of "diff --raw" without "--name-only" for the blob sha1). Michael -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html