2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-03 09:30:50 +00:00
restic/changelog/unreleased/issue-1542
2021-08-04 21:19:29 +02:00

18 lines
820 B
Plaintext

Enhancement: Add --dry-run/-n option to backup command
Testing exclude filters and other configuration options required running a
normal backup. Wrong filters could then cause files to be uploaded
unexpectedly. It was also not possible to approximately determine beforehand
how much data has to be uploaded.
We added a new --dry-run/-n option to the backup command, which performs
all the normal steps of a backup without actually writing any changes to
the repository. Passing -vv will log information about files that would
be added, allowing verification of source and exclusion backup options
without committing changes to the repository.
https://github.com/restic/restic/issues/1542
https://github.com/restic/restic/pull/2308
https://github.com/restic/restic/pull/3210
https://github.com/restic/restic/pull/3300