Does anyone know how to export only the changed files from two tags using svn?
Lets say I have tag 1.0 and then later fix bugs in the trunk. Next I am ready for a new
svn diff --summarize url/to/tag1.0 url/to/tag1.1
will give you a list of files that changed between those two tags. You should be able to parse that list in a script and export each file individually with either
svn export url/to/file filepath
or
svn cat url/to/file > file
If you're using TortoiseSVN: