I’m trying to patch a module for my project, so I just followed what everyone suggested, download the patch to the particular module folder, do the git apply -v xxx.patch to the contributed module, but it didn’t return anything once I do that, is that normal? Or it will return something like patches successfully?
Share
Answer for my own question, for some reason,
patch -p1 < xxx.patchworks for me.Stated at the footnotes #2 of http://drupal.org/node/1054616
After that input
git diff HEAD^ | mate, Hooray! Thanks @Jan for helping out though.