From 43b718ea86428efbb7359cc0e08922d910dba130 Mon Sep 17 00:00:00 2001 From: Gerard Bosch <30733556+gerardbosch@users.noreply.github.com> Date: Wed, 16 Feb 2022 10:14:01 +0100 Subject: [PATCH] Fix README/resticw commands (#84) * Fix README/resticw commands As per restic 0.12.1, the special snapshot ID `latest` is not supported by `diff` command. * Update `resticw diff` description --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 83265d8..0c27800 100644 --- a/README.md +++ b/README.md @@ -517,8 +517,8 @@ Useful commands: | Command | Description | |---------------------------------------------------|-------------------------------------------------------------------| | `resticw snapshots` | List backup snapshots | -| `resticw diff latest` | Show the changes from the latest backup | -| `resticw stats` / `resticw stats snapshot-id ...` | Show the statistics for the whole repo or the specified snapshots | +| `resticw diff ` | Show the changes between backup snapshots | +| `resticw stats` / `resticw stats snapshotId ...` | Show the statistics for the whole repo or the specified snapshots | | `resticw mount /mnt/restic` | Mount your remote repository |