Restic Forget

restic forget removes snapshots according to a retention policy. With --prune, it also reclaims the freed space.

restic forget          \
    --prune            \
    --quiet            \
    --keep-daily  14   \
    --keep-weekly 20

The flags:

The --keep-daily count is the part that confused me. It keeps one snapshot per day, for the last 14 days that had a backup. It does not mean that it simply keeps the 14 most recent snapshots.

Tags: