1
0
Fork 0
mirror of https://github.com/restic/restic.git synced 2025-03-30 00:00:14 +01:00
restic/changelog/unreleased/issue-4278
Winfried Plappert b40035222a rewrite command: add include.Empty(), changelog/issue-4278
Prepare filter inclusion filters: add func Empty()

Enhancement to enable inclusion filters for rewrite command.
2025-02-19 08:15:52 +00:00

13 lines
690 B
Text

Enhancement: include filters in command rewrite
The enhancement allows the standard include filter options
--iinclude pattern same as --include pattern but ignores the casing of filenames
--iinclude-file file same as --include-file but ignores casing of filenames in patterns
-i, --include pattern include a pattern (can be specified multiple times)
--include-file file read include patterns from a file (can be specified multiple times)
The exclusion or inclusion of filter parameters is exclusive, as in other commands
which use both include and exclude filters.
https://github.com/restic/restic/issues/4278
https://github.com/restic/restic/pull/5191