Use rsync When
You are syncing directories repeatedly and want delta transfers or exclusion rules.
You want a more efficient deployment or backup workflow.
The difference between simple file copying and efficient sync-oriented transfer.
SCP is straightforward for copying files over SSH. rsync is better when you care about repeated synchronization, partial updates, exclusions, or transfer efficiency.
You are syncing directories repeatedly and want delta transfers or exclusion rules.
You want a more efficient deployment or backup workflow.
You just need a quick one-time file copy over SSH.
You want the simplest familiar transfer command without sync logic.
scp copies once. rsync synchronizes efficiently.