On Mon, Mar 16, 2015 at 3:16 PM, Lathan Bidwell <lat...@andrews.edu> wrote:
>
>>
>> > I have a content management system running on top of SVN. My web servers
>> > run a post commit hook that does svn update off of svnlook after every
>> > commit.
>> >
>> > I currently have a "Publish" operation which I implement by doing svn
>> > delete $prod_url && svn cp $trunk_url $prod_url. (both repo urls)
>> >
>> > This causes problems because the post commit hook triggers a delete of
>> > the folder on my production web server, and then sometimes takes longer to
>> > re-download all the content (some folders have some decent media, about
>> > 15-30 gig).

Don't you really want to just 'svn switch' your production workspace
to the new production target url instead of deleting and checking out
again?  As long as the content shares ancestry it should just move the
differences.

-- 
   Les Mikesell
     lesmikes...@gmail.com

Reply via email to