More on Git patches
This is a quick follow-on to my earlier post on Git patches.
Here's a quick summary of what I found in the following post :
DIFFS IN PATCH : git apply --stat /tmp/patches/install.patch
CHECK IF APPLIES : git apply --check /tmp/patches/install.patch
APPLY PATCH : git apply /tmp/patches/install.patch
http://ariejan.net/2009/10/26/how-to-create-and-apply-a-patch-with-git/