1
0
mirror of https://github.com/gilbertchen/duplicacy synced 2026-01-09 20:13:16 +00:00

Updated Quick Start (markdown)

gilbertchen
2017-10-11 23:25:25 -04:00
parent 42b036491e
commit bf0959c953

@@ -34,7 +34,7 @@ $ duplicacy init mywork2 sftp://user@192.168.1.100/path/to/storage # differen
$ duplicacy backup
```
Duplicacy provides a set of commands, such as list, check, diff, cat history, to manage snapshots:
Duplicacy provides a set of commands, such as list, check, diff, cat history, to manage backups:
```makefile
@@ -78,6 +78,6 @@ $ duplicacy backup -storage s3
However, backups created this way will be different on different storages, if the repository has been changed during two backup operations. A better approach, is to use the *copy* command to copy specified backups from one storage to another:
```sh
$ duplicacy copy -r 1 -to s3 # Copy snapshot at revision 1 to the s3 storage
$ duplicacy copy -to s3 # Copy every snapshot to the s3 storage
$ duplicacy copy -r 1 -to s3 # Copy backup at revision 1 to the s3 storage
$ duplicacy copy -to s3 # Copy every backup to the s3 storage
```