Reputation: 61
Is it possible only to get files or folders from trunk that are newer (revision no.) than the last tag version, via svn commandline client?
I would like to checkout all files in actual trunk that are new or touched since the last tag-copy in a separate folder. Not for working on this files, but for delivering the changed projectfolders and files only...
Any ideas?
Upvotes: 2
Views: 205
Reputation: 61
Got it by myself:
Use SVN console client to do c:>svn diff --summarize --xml
Write the response in a XML-file and parse it with NANT ("")
If XML has no "path" nodes old and new path are equal. Otherwise new path has been changed.
Upvotes: 2