I am trying to sync the contents of a directory on my Windos machine with a UNIX server.
I have spent a long while reading the rsync documentation and have come up with the following command:
rsync --progress -avzC --stats --force --dry-run -e 'ssh -p 176' root@mydomain.com:/home/mydirectory
I try to run this from the directory which I wish to sync from but the command fails.
Is the problem that I need to specify the directory I am syncing from?
Thanks