mirror of
https://github.com/borgbackup/borg.git
synced 2026-07-09 18:21:13 -04:00
Some checks are pending
CI / lint (push) Waiting to run
CI / asan_ubsan (push) Blocked by required conditions
CI / native_tests (push) Blocked by required conditions
CI / vm_tests (Haiku, false, haiku, r1beta5) (push) Blocked by required conditions
CI / vm_tests (NetBSD, false, netbsd, 10.1) (push) Blocked by required conditions
CI / vm_tests (OpenBSD, false, openbsd, 7.7) (push) Blocked by required conditions
CI / vm_tests (borg-freebsd-14-x86_64-gh, FreeBSD, true, freebsd, 14.3) (push) Blocked by required conditions
CodeQL / Analyze (push) Waiting to run
Windows CI / msys2-ucrt64 (push) Waiting to run
28 lines
721 B
ReStructuredText
28 lines
721 B
ReStructuredText
.. include:: config.rst.inc
|
|
|
|
.. note::
|
|
|
|
The repository & cache config files are some of the only directly manipulable
|
|
parts of a repository that aren't versioned or backed up, so be careful when
|
|
making changes\!
|
|
|
|
Examples
|
|
~~~~~~~~
|
|
::
|
|
|
|
# find cache directory
|
|
$ cd ~/.cache/borg/$(borg config /path/to/repo id)
|
|
|
|
# reserve some space
|
|
$ borg config /path/to/repo additional_free_space 2G
|
|
|
|
# make a repo append-only
|
|
$ borg config /path/to/repo append_only 1
|
|
|
|
# set storage quota to 50 GB
|
|
$ borg config /path/to/repo storage_quota 50G
|
|
|
|
# set maximum segment size to 100 MiB (see "Adjusting segment size" in Usage Notes)
|
|
$ borg config /path/to/repo max_segment_size 104857600
|
|
|
|
|