Ittay Dror <ittay.dror@xxxxxxxxx> writes: > Given a file, is there an easy way (e.g., not bisecting) to find the > latest commit where the file content is the same? > > Meaning: I have a file /tmp/A and I want to file the latest commit > where a/b/A is identical (content wise) to /tmp/A. Do you mean: find the commit which changed file to current version? I think that $ git rev-parse -1 -- file Would work (but better check "git log -- file"). If you want to find which version corresponds to given contents, you would have to find sha-1 of /tmp/A (using "git hash-object"), and find it in difftree searching for sha ("git log --raw -- file", or just "git log --raw" if you are not sure about name). I think you can fins such script in mailing list archives... -- Jakub Narebski Poland ShadeHawk on #git -- 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