You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
533 B
21 lines
533 B
5 years ago
|
# Excluding files
|
||
|
|
||
|
If you want to exclude certain files or folders it done easily by specifiyng the right flags in the location you desire to filter.
|
||
|
|
||
|
The flags are taken straight from the [restic cli exclude rules](https://restic.readthedocs.io/en/latest/040_backup.html#excluding-files) so you can use any flag used there.
|
||
|
|
||
|
```yaml
|
||
|
locations:
|
||
|
my-location:
|
||
|
from: /data
|
||
|
to: my-backend
|
||
|
options:
|
||
|
backup:
|
||
|
exclude:
|
||
|
- '*.nope'
|
||
|
- '*.abc'
|
||
|
exclude-file: .gitignore
|
||
|
```
|
||
|
|
||
|
> :ToCPrevNext
|