> > Regarding subversion, how do people handle deployment? Just copy from > > your local "working copy" to the production server, or install > > tortoiseSVN on the server and "check out" working copies there? > > > > rick
I use Ant for this - basically create an Ant task to check out a copy from SVN into a temp directory and copy it the destination directory (or FTP or however you need to get the code from one place to another). And actually, if you keep the temp directory around, you can synch instead of checkout and it will only update the temp copy with changes, which is much faster if you have a large codebase. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260583 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

