Given a (source) patch file, what\'s the easiest way to apply this patch on the source files under Windows?
A GUI tool where I can visually compare the unchanged-cha
Thanks to Macke, a good way to apply a patch file under Windows OS is using Git. As I understood, Git is a version control solution like SVN.
Here is a guideline to apply a patch :
git apply --ignore-space-change --ignore-whitespace --whitespace=nowarn file.patch
Simple isn't it ?
Thank you Macke