How To Use Rsync to Sync with a Remote System

rsync -aP localPath user@remoteTarget:remotePath

The -P option combines –progress and –partial
The -a (--archive) option combines -rlptgoD

Add -z to compress data if it’s worth it.