Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can my client apply patch created by git diff without git installed? I have tried to use patch command but it always asks file name to patch.

share|improve this question
2  
Anyone know how to do this if the patch includes renames? Does patch support that natively now? – Paul Crowley Aug 24 '11 at 14:56

4 Answers

up vote 200 down vote accepted
git diff > patchfile

and

patch -p1 < patchfile

work fine

share|improve this answer
84  
Or use git diff > patchfile, but patch -p1 < patchfile – Jakub NarÄ™bski Aug 5 '10 at 21:18
4  
If you want to create a patchfile of a subpath of the repository you can use the relative option like: git diff --no-prefix --relative=my/relative/path > patchfile – Koen. Jul 2 '12 at 17:28
Doesn't this require git to be installed? The question is how to do it without git right? – UpTheCreek Apr 24 at 8:53
patch -p1 < patchfile does not require git installed. The first command demonstrates command for generating diff, not applying it. – Andrey Kouznetsov Apr 24 at 10:02
1  
The patch generated is for the changes from the branch/refspec indicated in the command to the current or active branch. In other words, you want git diff from_branch > patchfile; git checkout from_branch; git patch -p1 < patchfile or git diff from_branch to_branch > patchfile; ... – hobs May 8 at 21:57

try this:

patch -p1 < patchfile
share|improve this answer
1  
What does the -p1 argument do? – chrisjlee Dec 9 '11 at 22:44
6  
Strips slash in the beginning. See man patch – egor83 Dec 19 '11 at 22:16

Try this path$ git apply file.diff

share|improve this answer
6  
See question: "without git installed" – Charles Bailey Mar 20 '11 at 14:42
1  
Thanks, this works for Windows users too. – motto Apr 26 '11 at 16:50

Try patch < filename. Then read this.

share|improve this answer
2  
this does not work. I tryed different options. It always say me File to patch: and waits for my input – Andrey Kouznetsov Aug 5 '10 at 19:25
@SMiX: So what happens when you type in the filename? – Ether Aug 5 '10 at 20:11
It applyes patch. But the patch contains many files and I need patch to be applyed automatically. I have found the solution. – Andrey Kouznetsov Aug 5 '10 at 21:17
Would you care to share that solution? – ram4nd Jan 2 '12 at 14:36
This answer needs more explanation. A simple google search will find the man page but it is hard to parse if you are a newbie. – Will Jun 21 '12 at 19:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.