If I received a patch file generated with something like git diff rev^ revor even git show -p rev, how can I find out which commits will differ?
I'm not sure if this precedent applies even in git, but by noting the file path and / or version numbers in the patch header included in cvs / svn, give me the warm fuzziness that the patch I received, or created, differs from the correct source or version.
In particular, if we look at the git diff header:
diff
index 41bd496..c17af1d 100644
+++ b/lib/blueprint/semantic_class_names.rb
I cannot find any differentiating information about commits involved in this difference. There is an index line that I can only assume is not a shortened hash hat, but rather a hash of the scattered parts of the files. This, of course, does not match the associated commit signatures.
If I parse a couple of files and decide to go to the old school with a patch fixed by email, can I quickly verify that I changed the correct files / patches before posting the corrections that I made with a quick look at the heading? I understand that the changes are not so significant in git, because they are in cvs / svn due to their distributed nature, but I am the only one who would not mind seeing at least an abbreviated signature of the commit file in the header
Jason