From: Wayne Davison Date: Thu, 3 Feb 2005 02:01:22 +0000 (+0000) Subject: Mention the latest delete optimization. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/0752721dc300caeb4d512420140db83699bfc702 Mention the latest delete optimization. --- diff --git a/NEWS b/NEWS index bcde31bc..31b1f96b 100644 --- a/NEWS +++ b/NEWS @@ -81,7 +81,13 @@ Changes since 2.6.3: --del option is implemented as an internally-defined popt alias, so an rsync daemon that refuses "delete" (which, for safety's sake, really matches "delete*") will still refuse all delete options. The - default behavior is also explicitly selectable via --delete-before. + default --delete behavior is also explicitly selectable via + --delete-before. + + - All the --delete-WHEN options are now more memory efficient: + Previously an entire duplicate set of file-list objects was created + on the receiving side for the entire destination hierarchy. The new + algorithm only creates a single directory of objects at a time. - Added the --copy-dest option, which works like --link-dest except that it includes copies of identical files.