How my client can apply my patch created by command git diff
without git installed?
I have tryed to use patch
command but it always asks file name to patch.
views:
79answers:
2this does not work. I tryed different options.It always say me `File to patch:` and waits for my input
SMiX
2010-08-05 19:25:17
@SMiX: So what happens when you type in the filename?
Ether
2010-08-05 20:11:39
It applyes patch. But the patch contains many files and I need patch to be applyed automatically.I have found the solution.
SMiX
2010-08-05 21:17:25
+3
A:
git diff --no-prefix > patchfile
and
patch -p0 < patchfile
works fine
SMiX
2010-08-05 19:37:14