Skip to content

WIP: update docs to rustic 0.10.0 #115

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/breaking_changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
This document lists all user facing breaking changes in `rustic` and provides
guidance on how to migrate from one version to another.

## 0.10.0

### Renamed opions

The `skip-identical-parent` option of `backup` has been renamed to
`skip-if-unchanged` (like it's named in restic)

## 0.9.0

### Configuration File
Expand Down
8 changes: 5 additions & 3 deletions src/comparison-restic.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Comparison between `rustic` and `restic`

Note that we regularly update this document to compare the latest versions of
rustic and restic. Currently, we compare restic 0.17.3 with rustic 0.9.5.
rustic and restic. Currently, we compare restic 0.18.0 with rustic 0.10.0.

## General differences

Expand Down Expand Up @@ -36,7 +36,7 @@ introduced by rustic. Some have been already adopted by restic.
| `diff` with local files | ❌ | ✅ |
| `backup` can use .gitignore | ❌ (roadmap: 0.19) | ✅ |
| `backup` multiple snapshots at once | ❌ | ✅ |
| `check` uses existing cache | ❌ (roadmap: 0.18) | ✅ |
| `check` uses existing cache | ❌ (roadmap: 0.19) | ✅ |
| show file history | ❌ | ✅ (`rustic find --path`) |
| more snapshot filter options | ❌ | ✅ (see below for details) |
| allow to log to file | ❌ | ✅ |
Expand Down Expand Up @@ -150,6 +150,8 @@ introduced by rustic. Some have been already adopted by restic.
| `--use-profile` | ❌ (no config profile support) | ✅ (or in config profile for recursively using profiles) |
| `--verbose` (multiple times) | ✅ | ✅ `--log-level` |
| `--warm-up` | ❌ (no cold-storage support) | ✅ (or in config profile) |
| `--warm-up-wait` | ❌ (no cold-storage support) | ✅ (or in config profile) |
| `--warm-up-wait-command` | ❌ (no cold-storage support) | ✅ (or in config profile) |

## `rustic` in-repo config options

Expand Down Expand Up @@ -237,7 +239,7 @@ introduced by rustic. Some have been already adopted by restic.
| `--one-file-system` | ✅ | ✅ |
| `--parent` | ✅ | ✅ |
| `--read-concurrency` | ✅ | ❌ (hardcoded) |
| `--skip-if-unchanged` | ✅ | ✅ `--skip-identical-parent` |
| `--skip-if-unchanged` | ✅ | ✅ |
| `--stdin` | ✅ | ✅ (use `-` as backup source) |
| `--stdin-filename` | ✅ | ✅ |
| `--stdin-from-command` | ✅ | ✅ |
Expand Down