rsync: conflict between --times and --update? -
i trying use rsync
sync 2 files in bi-directional way, want copy destination if file not newer. using:
rsync -avtuz source destination
but seems override newer changes. because using --times
, --update
together, --times
overrrides dates on destination, , hence copying happens? there difference if use -tu
or -ut
?
thanks!
Comments
Post a Comment