Fix documentation to mention new "--files" flag.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Dan Helfman 2020-05-15 10:45:58 -07:00
parent 048a9ebb52
commit c1d6232b79
1 changed files with 5 additions and 4 deletions

View File

@ -170,16 +170,17 @@ good idea to test that borgmatic is working. So to run borgmatic and start a
backup, you can invoke it like this: backup, you can invoke it like this:
```bash ```bash
sudo borgmatic --verbosity 1 sudo borgmatic --verbosity 1 --files
``` ```
By default, this will also prune any old backups as per the configured By default, this will also prune any old backups as per the configured
retention policy, and check backups for consistency problems due to things retention policy, and check backups for consistency problems due to things
like file damage. like file damage.
The verbosity flag makes borgmatic list the files that it's archiving, which The verbosity flag makes borgmatic show the steps it's performing. And the
are those that are new or changed since the last backup. Eyeball the list and files flag lists each file that's new or changed since the last backup.
see if it matches your expectations based on the configuration. Eyeball the list and see if it matches your expectations based on the
configuration.
If you'd like to specify an alternate configuration file path, use the If you'd like to specify an alternate configuration file path, use the
`--config` flag. See `borgmatic --help` for more information. `--config` flag. See `borgmatic --help` for more information.