prune.rst.inc 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. .. IMPORTANT: this file is auto-generated from borg's built-in help, do not edit!
  2. .. borg:command:: borg prune
  3. .. _borg_prune:
  4. borg prune
  5. ----------
  6. ::
  7. borg [common options] prune <options> REPOSITORY
  8. positional arguments
  9. REPOSITORY
  10. repository to prune
  11. optional arguments
  12. ``-n``, ``--dry-run``
  13. | do not change repository
  14. ``--force``
  15. | force pruning of corrupted archives
  16. ``-s``, ``--stats``
  17. | print statistics for the deleted archive
  18. ``--list``
  19. | output verbose list of archives it keeps/prunes
  20. ``--keep-within WITHIN``
  21. | keep all archives within this time interval
  22. ``--keep-last``, ``--keep-secondly``
  23. | number of secondly archives to keep
  24. ``--keep-minutely``
  25. | number of minutely archives to keep
  26. ``-H``, ``--keep-hourly``
  27. | number of hourly archives to keep
  28. ``-d``, ``--keep-daily``
  29. | number of daily archives to keep
  30. ``-w``, ``--keep-weekly``
  31. | number of weekly archives to keep
  32. ``-m``, ``--keep-monthly``
  33. | number of monthly archives to keep
  34. ``-y``, ``--keep-yearly``
  35. | number of yearly archives to keep
  36. ``-P``, ``--prefix``
  37. | only consider archive names starting with this prefix
  38. ``--save-space``
  39. | work slower, but using less space
  40. `Common options`_
  41. |
  42. Description
  43. ~~~~~~~~~~~
  44. The prune command prunes a repository by deleting all archives not matching
  45. any of the specified retention options. This command is normally used by
  46. automated backup scripts wanting to keep a certain number of historic backups.
  47. Also, prune automatically removes checkpoint archives (incomplete archives left
  48. behind by interrupted backup runs) except if the checkpoint is the latest
  49. archive (and thus still needed). Checkpoint archives are not considered when
  50. comparing archive counts against the retention limits (--keep-X).
  51. If a prefix is set with -P, then only archives that start with the prefix are
  52. considered for deletion and only those archives count towards the totals
  53. specified by the rules.
  54. Otherwise, *all* archives in the repository are candidates for deletion!
  55. There is no automatic distinction between archives representing different
  56. contents. These need to be distinguished by specifying matching prefixes.
  57. If you have multiple sequences of archives with different data sets (e.g.
  58. from different machines) in one shared repository, use one prune call per
  59. data set that matches only the respective archives using the -P option.
  60. The "--keep-within" option takes an argument of the form "<int><char>",
  61. where char is "H", "d", "w", "m", "y". For example, "--keep-within 2d" means
  62. to keep all archives that were created within the past 48 hours.
  63. "1m" is taken to mean "31d". The archives kept with this option do not
  64. count towards the totals specified by any other options.
  65. A good procedure is to thin out more and more the older your backups get.
  66. As an example, "--keep-daily 7" means to keep the latest backup on each day,
  67. up to 7 most recent days with backups (days without backups do not count).
  68. The rules are applied from secondly to yearly, and backups selected by previous
  69. rules do not count towards those of later rules. The time that each backup
  70. starts is used for pruning purposes. Dates and times are interpreted in
  71. the local timezone, and weeks go from Monday to Sunday. Specifying a
  72. negative number of archives to keep means that there is no limit.
  73. The "--keep-last N" option is doing the same as "--keep-secondly N" (and it will
  74. keep the last N archives under the assumption that you do not create more than one
  75. backup archive in the same second).