You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rsync-sidekick incorrectly propagates the modification timestamp of source file-2 to destination file-1. Because of this, rsync copies file-1 from source to destination, because the timestamps are different:
$ rsync-sidekick source/ destination/Found 1 actions that can save you 2 B of files transfer!Applying sync actions at destination... 1/1 propagate timestamp of "source/file-2" to "file-1":done
$ rsync -av source/ destination/./file-1file-2
rsync-sidekick must not do anything, so that rsync does not copy file-1:
Create this file structure:
file-1
has the same content and modification timestamp in thesource
anddestination
directories.file-2
has different content and modification timestamp in thesource
anddestination
directories.file-1
has the same content asfile-2
in thesource
directory.rsync-sidekick incorrectly propagates the modification timestamp of source
file-2
to destinationfile-1
. Because of this, rsync copiesfile-1
from source to destination, because the timestamps are different:rsync-sidekick must not do anything, so that rsync does not copy
file-1
:The text was updated successfully, but these errors were encountered: