--detect-renamed --detect-moved and -b

2009-11-11 Thread Thomas Gutzler
Hi, I played around with the combination of rsync --detect-renamed --detect-moved and -b. Given the following tree: src/dir/file dest/src/dir/file I renamed src/dir to src/dir2 and ran the following command: rsync -a --detect-renamed --detect-moved --delete -b --backup-dir=bak src dest ending up

Re: --detect-renamed --detect-moved and -b

2009-11-12 Thread Matt McCutchen
On Wed, 2009-11-11 at 20:27 +0800, Thomas Gutzler wrote: > I played around with the combination of rsync --detect-renamed > --detect-moved and -b. You can't combine the --detect-renamed and --detect-moved options because they make use of the partial dir in incompatible ways. The las

Re: --detect-renamed --detect-moved and -b

2009-11-12 Thread Thomas Gutzler
Matt McCutchen wrote: > On Wed, 2009-11-11 at 20:27 +0800, Thomas Gutzler wrote: >> I played around with the combination of rsync --detect-renamed >> --detect-moved and -b. > > You can't combine the --detect-renamed and --detect-moved options > because they m

Re: --detect-renamed --detect-moved and -b

2009-11-12 Thread Matt McCutchen
On Fri, 2009-11-13 at 14:40 +0800, Thomas Gutzler wrote: > Matt McCutchen wrote: > > You can't combine the --detect-renamed and --detect-moved options > > because they make use of the partial dir in incompatible ways. The last > > option on the command line takes priority. (Yes, the implementatio