Thanks. Will try it out, I guess I need more coffee... – Nikola KoturOct 20 '09 at 13:12
1
Patches generated by git format-patch are also correctly procesed by GNU patch... unless they are generated with -M / -C option and contain information about renames, etc. – Jakub NarÄ™bskiOct 20 '09 at 14:07
From the patch man page: "patch tries to skip any leading garbage, apply the diff, and then skip any trailing garbage." The big unique thing in git diffs is the addition of modelines (e.g. "index...", "rename...", "new file...") and patch is able to simply skip these. Git also prefixes filenames, e.g. "a/path/to/file", but this can be skipped by patch's -p1. – JefromiOct 20 '09 at 14:54