What are the flags to make sure rsync ignore modification time and use checksum only?

link|improve this question
feedback

1 Answer

From the rsync(1) man page:

    -c, --checksum              skip based on checksum, not mod-time & size
       ...
    -I, --ignore-times          don’t skip files that match size and time

As always, -n will help you make sure you have the options you need.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.