If you are wanting to use SSH/internet to do it, you're looking at rsync (or scp - I'd choose rsync). Usage:
rsync -Paz /path/to/your/source/directory
[email protected]:/path/to/destination/
Note: if your source is the directory name without a trailing /, it will transfer the directory too. If...