28

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?

Dan Hastings
  • 706
  • 1
  • 13
  • 24
  • 13
    This is not an answer to your question, but you should have a look at `unison`. It's a synchronization tool that saves file state on both copies and thus allows bidirectional synchronization. There is also a cygwin package. – Dubu Jul 06 '14 at 15:53
  • 2
    http://www.cis.upenn.edu/~bcpierce/unison/ – Sam Jul 06 '14 at 23:44

3 Answers3

32

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:

rsync [OPTION...] SRC... [DEST]

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:

rsync [OPTION...] <server-path> <laptop-path>

To sync in the opposite direction you do:

rsync [OPTION...] <laptop-path> <server-path>

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 test rsync command behavior.

grekasius
  • 2,056
  • 12
  • 15
  • 9
    Additional note: For testing rsync behavior, you can use parameter `-n` or `--dry-run`, so you will know which file will be deleted and modified – masegaloeh Jul 06 '14 at 14:26
1

A wrapper tool written in python3 called bsync which wraps find and rsync command simplifies the task. Github repo: https://github.com/dooblem/bsync

Don'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).

biocyberman
  • 273
  • 3
  • 8
-1

consider using --delete-after and not --delete, this will ensure that your receiving end will delete files after transfer, not before.

Moti
  • 287
  • 1
  • 2
  • I take it that the downvotes are because the OP isn't trying to have `rsync` delete anything. He's deleting things on his own. Having said that, helpful hint for rsync'ing in general. Thanks. – harperville Aug 24 '16 at 17:28