Skip to main content
replaced http://unix.stackexchange.com/ with https://unix.stackexchange.com/
Source Link

In addition to @Richm@Richm's answeranswer Rsync uses timestamps, and size (like git does) by default to tell if a file has changed, and that rsync should update it. you can use the --checksum option to check based on a checksum instead of a timestamp.

-c, --checksum              skip based on checksum, not mod-time & size

In addition to @Richm's answer Rsync uses timestamps, and size (like git does) by default to tell if a file has changed, and that rsync should update it. you can use the --checksum option to check based on a checksum instead of a timestamp.

-c, --checksum              skip based on checksum, not mod-time & size

In addition to @Richm's answer Rsync uses timestamps, and size (like git does) by default to tell if a file has changed, and that rsync should update it. you can use the --checksum option to check based on a checksum instead of a timestamp.

-c, --checksum              skip based on checksum, not mod-time & size
Source Link
xenoterracide
  • 61.5k
  • 79
  • 196
  • 252

In addition to @Richm's answer Rsync uses timestamps, and size (like git does) by default to tell if a file has changed, and that rsync should update it. you can use the --checksum option to check based on a checksum instead of a timestamp.

-c, --checksum              skip based on checksum, not mod-time & size