I have backed up a linux web server using rsync with cygwin. I now have a perfect copy of the server on my windows laptop. If i delete or modify a file on my laptop and run rsync again with cygwin will it delete/update the same file on the server? Im under the impression that if i delete/modify on the server and run rsync on my laptop it will delete/modify the local file on my laptop but does this work in reverse?
Rsync does a one way sync, however it's up to you to decide which way the sync goes.
Rsync command syntax is the following:
Note that you specify sync from source to destination. Source and destination can be any local or remote path.
For example if you want to copy files from your server to your laptop you do:
To sync in the opposite direction you do:
So to answer your question: it depends on how you execute rsync.
If you want files to be deleted on the destination you need to use
--delete
option. But be careful with it, because if you make a mistake when specifying your source then you will end up removing everything on your destination. It's safer to test your sync without--delete
option first and once you are happy with how it works you can add--delete
option.As suggested by masegaloeh in comments below,
-n
or--dry-run
option may also be used to testrsync
command behavior.A wrapper tool written in python3 called
bsync
which wrapsfind
andrsync
command simplifies the task. Github repo: https://github.com/dooblem/bsyncDon't be scared when it is on github (i.e. in a way that you think you must be a programmer to use the tool).
consider using --delete-after and not --delete, this will ensure that your receiving end will delete files after transfer, not before.