Translations:Frequently Asked Questions/13/en
Jump to navigation
Jump to search
For rsync you can use the following command to transfer a directory from a remote location to your project directory:
$ rsync -axvpH --no-g --no-p remote_user@remote.system:remote/dir/path $HOME/projects/<project>/$USER/
You can also compress the data to get a better transfer rate.
$ rsync -axvpH --no-g --no-p --compress-level=5 remote_user@remote.system:remote/dir/path $HOME/projects/<project>/$USER/