2016-08-03 22:36:28 +02:00
|
|
|
---
|
2020-05-16 16:11:55 +02:00
|
|
|
date: 2020-05-18T10:38:09+01:00
|
2016-08-03 22:36:28 +02:00
|
|
|
title: "rclone sync"
|
2020-05-16 16:11:55 +02:00
|
|
|
description: "Make source and dest identical, modifying destination only."
|
2016-08-03 22:36:28 +02:00
|
|
|
slug: rclone_sync
|
|
|
|
url: /commands/rclone_sync/
|
2020-02-10 13:31:45 +01:00
|
|
|
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/sync/ and as part of making a release run "make commanddocs"
|
2016-08-03 22:36:28 +02:00
|
|
|
---
|
|
|
|
## rclone sync
|
|
|
|
|
|
|
|
Make source and dest identical, modifying destination only.
|
|
|
|
|
|
|
|
### Synopsis
|
|
|
|
|
|
|
|
|
|
|
|
Sync the source to the destination, changing the destination
|
|
|
|
only. Doesn't transfer unchanged files, testing by size and
|
|
|
|
modification time or MD5SUM. Destination is updated to match
|
|
|
|
source, including deleting files if necessary.
|
|
|
|
|
|
|
|
**Important**: Since this can cause data loss, test first with the
|
|
|
|
`--dry-run` flag to see exactly what would be copied and deleted.
|
|
|
|
|
|
|
|
Note that files in the destination won't be deleted if there were any
|
|
|
|
errors at any point.
|
|
|
|
|
|
|
|
It is always the contents of the directory that is synced, not the
|
|
|
|
directory so when source:path is a directory, it's the contents of
|
|
|
|
source:path that are copied, not the directory name and contents. See
|
|
|
|
extended explanation in the `copy` command above if unsure.
|
|
|
|
|
|
|
|
If dest:path doesn't exist, it is created and the source:path contents
|
|
|
|
go there.
|
|
|
|
|
2018-11-24 14:44:25 +01:00
|
|
|
**Note**: Use the `-P`/`--progress` flag to view real-time transfer statistics
|
|
|
|
|
2016-08-03 22:36:28 +02:00
|
|
|
|
|
|
|
```
|
2017-09-30 15:19:47 +02:00
|
|
|
rclone sync source:path dest:path [flags]
|
|
|
|
```
|
|
|
|
|
|
|
|
### Options
|
|
|
|
|
|
|
|
```
|
2019-04-13 12:01:58 +02:00
|
|
|
--create-empty-src-dirs Create empty source dirs on destination after sync
|
|
|
|
-h, --help help for sync
|
2016-08-03 22:36:28 +02:00
|
|
|
```
|
|
|
|
|
2019-06-20 17:18:02 +02:00
|
|
|
See the [global flags page](/flags/) for global options not listed here.
|
|
|
|
|
2016-08-03 22:36:28 +02:00
|
|
|
### SEE ALSO
|
|
|
|
|
2018-10-15 12:03:08 +02:00
|
|
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
2018-03-19 11:06:13 +01:00
|
|
|
|