From 5c70d6589650774010a9249cc54986426dfacb69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Babi=C4=8D?= Date: Sat, 10 Jul 2021 20:36:37 +0200 Subject: [PATCH] restic: replace -r by long argument --repo (#6212) --- pages/common/restic.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pages/common/restic.md b/pages/common/restic.md index a4e24bb9f..d4eb50e4b 100644 --- a/pages/common/restic.md +++ b/pages/common/restic.md @@ -5,23 +5,23 @@ - Initialize a backup repository in the specified local directory: -`restic init -r {{path/to/repository}}` +`restic init --repo {{path/to/repository}}` - Backup a directory to the repository: -`restic -r {{path/to/repository}} backup {{path/to/directory}}` +`restic --repo {{path/to/repository}} backup {{path/to/directory}}` - Show backup snapshots currently stored in the repository: -`restic -r {{path/to/repository}} snapshots` +`restic --repo {{path/to/repository}} snapshots` - Restore a specific backup snapshot to a target directory: -`restic -r {{path/to/repository}} restore {{snapshot_id}} {{path/to/target}}` +`restic --repo {{path/to/repository}} restore {{snapshot_id}} {{path/to/target}}` - Restore a specific path from a specific backup to a target directory: -`restic -r {{path/to/repository}} --include {{path/to/restore}} --target {{path/to/target}} restore {{snapshot_id}}` +`restic --repo {{path/to/repository}} --include {{path/to/restore}} --target {{path/to/target}} restore {{snapshot_id}}` - Clean up the repository and keep only the most recent snapshot of each unique backup: