2
2
mirror of https://github.com/octoleo/restic.git synced 2024-12-01 17:23:57 +00:00
restic/changelog/unreleased/pull-5054

11 lines
474 B
Plaintext

Enhancement: Add `--compress` flag to `dump` command to compress archive
Restic did not compress the archives that was created by using the
`dump` command. It now allows to save some disk space when exporting
archives by adding a `--compress` flag. The DEFLATE algorithm is used
for "zip" archives, and the gzip algorithm for "tar" archives,
resulting in a .tar.gz or .tgz file. Not compressing the archive
is still the default.
https://github.com/restic/restic/pull/5054