aawsome
aawsome
What does this PR change? What problem does it solve? ----------------------------------------------------- Support multiple parents in the `backup` command and implements an algorithm to automatically find those. Some examples: With this...
Adds `--check-index` options. They are an alternative to `rustic repair index` in cases where the repository is read-only and cannot be repaired. Using these options, the index is checked against...
This PR adds new commands to lock (parts of) the repository: - `lock repository` to lock the complete repository. This can invalidate update/remove operations; it is suggested to use https://github.com/rustic-rs/rustic_core/pull/164...
reduce memory usage of the `restore` command by removing the data entries from the index before doing the actual restore. see https://github.com/rustic-rs/rustic/issues/1067 TODO: - [ ] remove Cargo changes once...
Note: In meanwhile, use the following workaround: ``` [repository] repository = "opendal:sftp" password = "mypassword" [repository.options] user = "myuser" endpoint = "host:port" root = "path/to/repo" ```
This PR adds the `mount` command to rustic to access snapshot contents as a read-only filesystem when the feature-flag `mount` is chosen. As for the `webdav` command, there are following...
Add a command which runs multiple `backup` runs in a row generating a couple of snapshots. Maybe add a `--merge` option once rustic-rs/rustic#411 is finished to directly merge them into...
see #250
features: - allow to rewrite tree with `:` syntax - Add option `--as-path` to use with rewrite command Implementation idea: - read snapshot/path - get the iterator over nodes -...
When using a hot/cold repo scenario, the hot repo should be in sync with the cold repo for files it contains. The `check` command does check the consistency of the...