Is there a way to only push the difference, and not the entire trunk?
--
Anthony Ettinger
408-656-2473
http://anthony.ettinger.name
--
Using Capistrano 2, you can use the set :deploy_via, :remote_cache
variable to have it keep a cached copy and just do an update and copy
from that.
--
Jesse Proudman, Blue Box Group, LLC
http://www.blueboxgrp.com
I'm currently using the :export option, which makes a duplicate of the
entire tree (even if only 1 file has changed).
The rsnapshot perl script I'm referring to uses rsync to provide the
delta and only copies files that have been changed, added, or removed.
It makes a hardlink of all existing files that have not been modified
(saving on disk space) to create the rest of the un-modified tree.
The advantage is that a deploy could take a few seconds vs. several
minutes, and save on disk space.
--
- Jamis