We can generate a patch for each version of a given file by:
git log -p -- <filename>
But it only shows the diff of each version, I want it to show the full content of the file at each version, so I can next parse the output as my demand. Does git log support this?