2
2
mirror of https://github.com/octoleo/restic.git synced 2025-01-24 15:48:25 +00:00

12 lines
470 B
Plaintext
Raw Normal View History

2024-07-24 19:28:45 +02:00
Enhancement: Optionally skip snapshot creation if nothing changed
2024-05-22 16:45:09 +02:00
2024-07-23 00:19:22 +02:00
The `backup` command always created a snapshot even if nothing in the
backup set changed compared to the parent snapshot.
2024-05-22 16:45:09 +02:00
Restic now supports the `--skip-if-unchanged` option for the `backup`
2024-07-23 00:19:22 +02:00
command, which omits creating a snapshot if the new snapshot's content
would be identical to that of the parent snapshot.
2024-05-22 16:45:09 +02:00
https://github.com/restic/restic/issues/662
https://github.com/restic/restic/pull/4816