Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'd like to use svn to apply a patch from one version of Joomla to another. I'm using a mac with Versions installed, but don't mind using svn on the command line. So far, I've figured out how to generate the list of files that changed from one revision to the other, but I want to export those changed files to my working directory. How does one go about doing that? Do I need to save the diff output and process it using awk, or is there a command line option to pipe those files into an export command?

The diff command I'm using is: svn diff http://joomlacode.org/svn/joomla/development/releases/1.5@11255 http://joomlacode.org/svn/joomla/development/releases/1.5@11410 --summarize

share|improve this question

3 Answers

for creating a patch use:

svn diff > ~/patch.diff

for applying a patch use:

patch -p0 -i ~/patch.diff
share|improve this answer
Can the patch command be applied to a directory that isn't a working directory? The directory where I am applying the patch is actually a working directory of a different repository. – user77413 Mar 14 '09 at 20:27
as patch is a standard unix command It should work on a conventional (aka non-svn-workingcopy) directory – Peter Parker Mar 14 '09 at 22:38

I'm not sure as to the setup of your current repository and how much flexibility you have but following the vendor drop process as detailed in the red bean book might help.

share|improve this answer

I think more or less this is answered here How to svn export with automatically creating the relative directory/path?

Check answer (script) provided by spock

hope it helps

share|improve this answer

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.