Presumably you mean for deployment purposes? What we do is keep a working copy checked out on our dev and qa servers, and our Ant deployment script simply does an "update" on the working copy when we are ready to deploy.
The only downside is that you have all of the .svn directories around. For our dev and qa environments, this is no biggie, but it's not what we want for production. In our case, we just do a full export for production, since even though we have a similarly large codebase, our qa and production servers are in the same datacenter, and the export is very very fast. Also, look into the Ant sync task, which will copy/add/delete only changed files (again from a working copy you have already updated), and you can use a file or directory filter to exclude the .svn directories. My only trouble with this method is it's incredibly slow over a mapped drive. This on Windows mind you, and it's Window's fault, not Ant's. This probably works quite dandy on Linux over NFS. On 6/21/07, Cutter (CFRelated) <[EMAIL PROTECTED]> wrote: > > OK, quick OT. Moving to using Subversion in our dev environment (yeah!), > but hitting a few stumbling blocks. > > I can 'export' a clean version of my 'HEAD', or any revision. But, I > have a massive (3,000+ template) code base. Not every 'commit' to the > system is tagged, or part of a branch. How (or is it even possible) do I > pull ONLY the modified files from the repository? I have SvnAnt > installed within Eclipse, to utilize Ant with Subversion for creating > builds and deployments, but I'm still struggling to get my head around > all of this. > > -- > Steve "Cutter" Blades > Adobe Certified Professional > Advanced Macromedia ColdFusion MX 7 Developer > _____________________________ > http://blog.cutterscrossing.com > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| ColdFusion MX7 by AdobeĀ® Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:281811 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

