The scenario is:

  1. svn cp or mv some file
  2. modify that file
  3. svn diff > mypatch

On other machine (same working copy, but no changes):

  1. Try to apply mypatch.
  2. Fail -> tries to modify unexistant file.

How can I make svn diff produce patch-appliable patch, or cleanly apply patch produced by svn diff in this case? I can't commit. I would like to preserve mergeinfo (because the obvious workaround is to add the file as totally new, without connection to the previous one).

link|improve this question

feedback

2 Answers

With subversion, you can specify which diff binary to use, and parameters to pass to it. See the manual on svn diff.

You'd want to produce a regular patch file from a svn diff, so you'd want the svn diff to look like a normal diff. Try this:

svn diff --diff-cmd /usr/bin/diff -x "-i -b" > mypatch
...
patch -p0 < mypatch

Proof of concept:

echo "newline" >> README.txt
svn diff --diff-cmd /usr/bin/diff -x "-i -b" > mypatch
cp README.txt README.txt.patched
svn revert README.txt
patch -p0 < mypatch
diff README.txt README.txt.patched

No difference in the two files after patching.

link|improve this answer
1  
This doesn't work if there are property changes between branches though. – Will Sargent Feb 10 '09 at 20:59
2  
This isn't working for me. The patch file that is produced still shows the copied file as being a modification of an original file (e.g. it has lines beginning with - as well as lines that don't begin with - or +). Furthermore, an attempt at patching yields: "12 out of 14 hunks FAILED -- saving rejects to file". Have you tried this with a source file that actually has content, and a destination file that has content different from the source file? – Garret Wilson Jan 7 '11 at 13:09
i was looking for the exact same thing, and this worked a charm, thanks – nivanka Jan 20 at 4:38
feedback

Go ahead and try patch original -i original.patch. I've never had problems using patch with patches produced by svn diff.

link|improve this answer
How about when using svn cp or svn mv? – PaweÅ‚ Hajdan Aug 13 '10 at 14:27
feedback

Your Answer

 
or
required, but never shown

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