CP
copy with symlinks
cp -Lr source dest
SCP
scp -r directory host:/home/user/directory
note: SCP does not support fetchnig symlinks
RSYNC
rsync -L -avuz -e ssh /dir host:/home/user/dir
The -L
flag to rsync will sync the contents of files or directories linked to, rather than the symbolic link.