Skip to main content
8 votes
Accepted

Is it true that rsync does not handle "File renames" gracefully?

There is no mechanism for rsync to track renames as it does not maintain state other than while it is running. If you rename /test/10GBfile to /test/10GBfile_newname on the source computer, then by ...
Chris Davies's user avatar
5 votes

Is it true that rsync does not handle "File renames" gracefully?

--fuzzy has already been answered but there is another interesting hack involving hard links. After the first transfer $ rsync -avHP --delete-after ~/family/Photos remotebox:backups You create a hard ...
laktak's user avatar
  • 6,353
2 votes

Is it true that rsync does not handle "File renames" gracefully?

That page claims patches for --detect-renamed option were available for rsync 3.0.9. It has links to patches, link to bugzilla discussion. My rsync 3.1.3 does not have --detect-renamed option. The ...
Martian2020's user avatar
  • 1,483

Only top scored, non community-wiki answers of a minimum length are eligible