if I use the -bit-identical option, and use Rclone to synchronize local storage with the cloud storage, can I make backups for any of the two, and when they sync will everything be ok? (of course, since I always sync with Rclone after a set of backups).
Yes, when the -bit-identical option is used, the two storage directories will become identical and rclone sync
should work as expected.
But if the copy is interrupted, the revision “3” will be “broken” in the cloud storage.
If I make a new backup to the local storage (“4”), and then make the “last” copy, the “4” will be copied to the remote storage.
Any problem with that? Will the prune command delete the partial “3” in the cloud storage in the future?
If the copy
command is interrupted, the snapshot file for the revision “3” will not be copied so you’ll just end up with some unreferenced chunks in the cloud storage.
why is -copy not the default for the add command?
The -copy
option takes a storage to copy the config file from, so it can’t be a default option.