Skip to content

Commit 37077a5

Browse files
build_usage build_man
1 parent e8a6421 commit 37077a5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+392
-95
lines changed

docs/man/borg-analyze.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
2727
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
2828
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
2929
..
30-
.TH "BORG-ANALYZE" 1 "2024-10-31" "" "borg backup tool"
30+
.TH "BORG-ANALYZE" 1 "2024-11-16" "" "borg backup tool"
3131
.SH NAME
3232
borg-analyze \- Analyze archives
3333
.SH SYNOPSIS

docs/man/borg-benchmark-cpu.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
2727
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
2828
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
2929
..
30-
.TH "BORG-BENCHMARK-CPU" 1 "2024-10-31" "" "borg backup tool"
30+
.TH "BORG-BENCHMARK-CPU" 1 "2024-11-16" "" "borg backup tool"
3131
.SH NAME
3232
borg-benchmark-cpu \- Benchmark CPU bound operations.
3333
.SH SYNOPSIS

docs/man/borg-benchmark-crud.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
2727
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
2828
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
2929
..
30-
.TH "BORG-BENCHMARK-CRUD" 1 "2024-10-31" "" "borg backup tool"
30+
.TH "BORG-BENCHMARK-CRUD" 1 "2024-11-16" "" "borg backup tool"
3131
.SH NAME
3232
borg-benchmark-crud \- Benchmark Create, Read, Update, Delete for archives.
3333
.SH SYNOPSIS

docs/man/borg-benchmark.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
2727
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
2828
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
2929
..
30-
.TH "BORG-BENCHMARK" 1 "2024-10-31" "" "borg backup tool"
30+
.TH "BORG-BENCHMARK" 1 "2024-11-16" "" "borg backup tool"
3131
.SH NAME
3232
borg-benchmark \- benchmark command
3333
.SH SYNOPSIS

docs/man/borg-break-lock.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
2727
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
2828
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
2929
..
30-
.TH "BORG-BREAK-LOCK" 1 "2024-10-31" "" "borg backup tool"
30+
.TH "BORG-BREAK-LOCK" 1 "2024-11-16" "" "borg backup tool"
3131
.SH NAME
3232
borg-break-lock \- Break the repository lock (e.g. in case it was left by a dead borg.
3333
.SH SYNOPSIS

docs/man/borg-check.1

Lines changed: 22 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
2727
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
2828
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
2929
..
30-
.TH "BORG-CHECK" 1 "2024-10-31" "" "borg backup tool"
30+
.TH "BORG-CHECK" 1 "2024-11-16" "" "borg backup tool"
3131
.SH NAME
3232
borg-check \- Check repository consistency
3333
.SH SYNOPSIS
@@ -51,12 +51,14 @@ Checking consistency and correctness of the archive metadata and optionally
5151
archive data (requires \fB\-\-verify\-data\fP). This includes ensuring that the
5252
repository manifest exists, the archive metadata chunk is present, and that
5353
all chunks referencing files (items) in the archive exist. This requires
54-
reading archive and file metadata, but not data. To cryptographically verify
55-
the file (content) data integrity pass \fB\-\-verify\-data\fP, but keep in mind
56-
that this requires reading all data and is hence very time consuming. When
57-
checking archives of a remote repository, archive checks run on the client
58-
machine because they require decrypting data and therefore the encryption
59-
key.
54+
reading archive and file metadata, but not data. To scan for archives whose
55+
entries were lost from the archive directory, pass \fB\-\-find\-lost\-archives\fP\&.
56+
It requires reading all data and is hence very time consuming.
57+
To additionally cryptographically verify the file (content) data integrity,
58+
pass \fB\-\-verify\-data\fP, which is even more time consuming.
59+
.sp
60+
When checking archives of a remote repository, archive checks run on the client
61+
machine because they require decrypting data and therefore the encryption key.
6062
.UNINDENT
6163
.sp
6264
Both steps can also be run independently. Pass \fB\-\-repository\-only\fP to run the
@@ -88,6 +90,15 @@ cryptographic verification and hence very time consuming, but will detect any
8890
accidental and malicious corruption. Tamper\-resistance is only guaranteed for
8991
encrypted repositories against attackers without access to the keys. You can
9092
not use \fB\-\-verify\-data\fP with \fB\-\-repository\-only\fP\&.
93+
.sp
94+
The \fB\-\-find\-lost\-archives\fP option will also scan the whole repository, but
95+
tells Borg to search for lost archive metadata. If Borg encounters any archive
96+
metadata that doesn\(aqt match with an archive directory entry (including
97+
soft\-deleted archives), it means that an entry was lost.
98+
Unless \fBborg compact\fP is called, these archives can be fully restored with
99+
\fB\-\-repair\fP\&. Please note that \fB\-\-find\-lost\-archives\fP must read a lot of
100+
data from the repository and is thus very time consuming. You can not use
101+
\fB\-\-find\-lost\-archives\fP with \fB\-\-repository\-only\fP\&.
91102
.SS About repair mode
92103
.sp
93104
The check command is a readonly task by default. If any corruption is found,
@@ -150,10 +161,8 @@ chunks of a \(dqzero\-patched\(dq file reappear, this effectively \(dqheals\(dq
150161
Consequently, if lost chunks were repaired earlier, it is advised to run
151162
\fB\-\-repair\fP a second time after creating some new backups.
152163
.sp
153-
If \fB\-\-repair \-\-undelete\-archives\fP is given, Borg will scan the repository
154-
for archive metadata and if it finds some where no corresponding archives
155-
directory entry exists, it will create the entries. This is basically undoing
156-
\fBborg delete archive\fP or \fBborg prune ...\fP commands and only possible before
164+
If \fB\-\-repair \-\-find\-lost\-archives\fP is given, previously lost entries will
165+
be recreated in the archive directory. This is only possible before
157166
\fBborg compact\fP would remove the archives\(aq data completely.
158167
.SH OPTIONS
159168
.sp
@@ -173,8 +182,8 @@ perform cryptographic archive data integrity verification (conflicts with \fB\-\
173182
.B \-\-repair
174183
attempt to repair any inconsistencies found
175184
.TP
176-
.B \-\-undelete\-archives
177-
attempt to undelete archives (use with \-\-repair)
185+
.B \-\-find\-lost\-archives
186+
attempt to find lost archives
178187
.TP
179188
.BI \-\-max\-duration \ SECONDS
180189
do only a partial repo check for max. SECONDS seconds (Default: unlimited)

docs/man/borg-common.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
2727
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
2828
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
2929
..
30-
.TH "BORG-COMMON" 1 "2024-10-31" "" "borg backup tool"
30+
.TH "BORG-COMMON" 1 "2024-11-16" "" "borg backup tool"
3131
.SH NAME
3232
borg-common \- Common options of Borg commands
3333
.SH SYNOPSIS

docs/man/borg-compact.1

Lines changed: 33 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
2727
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
2828
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
2929
..
30-
.TH "BORG-COMPACT" 1 "2024-10-31" "" "borg backup tool"
30+
.TH "BORG-COMPACT" 1 "2024-11-16" "" "borg backup tool"
3131
.SH NAME
3232
borg-compact \- Collect garbage in repository
3333
.SH SYNOPSIS
@@ -37,12 +37,39 @@ borg [common options] compact [options]
3737
.sp
3838
Free repository space by deleting unused chunks.
3939
.sp
40-
borg compact analyzes all existing archives to find out which chunks are
41-
actually used. There might be unused chunks resulting from borg delete or prune,
42-
which can be removed to free space in the repository.
40+
borg compact analyzes all existing archives to find out which repository
41+
objects are actually used (referenced). It then deletes all unused objects
42+
from the repository to free space.
4343
.sp
44-
Differently than borg 1.x, borg2\(aqs compact needs the borg key if the repo is
45-
encrypted.
44+
Unused objects may result from:
45+
.INDENT 0.0
46+
.IP \(bu 2
47+
borg delete or prune usage
48+
.IP \(bu 2
49+
interrupted backups (maybe retry the backup first before running compact)
50+
.IP \(bu 2
51+
backup of source files that had an I/O error in the middle of their contents
52+
and that were skipped due to this
53+
.IP \(bu 2
54+
corruption of the repository (e.g. the archives directory having lost
55+
entries, see notes below)
56+
.UNINDENT
57+
.sp
58+
You usually don\(aqt want to run \fBborg compact\fP after every write operation, but
59+
either regularly (e.g. once a month, possibly together with \fBborg check\fP) or
60+
when disk space needs to be freed.
61+
.sp
62+
\fBImportant:\fP
63+
.sp
64+
After compacting it is no longer possible to use \fBborg undelete\fP to recover
65+
previously soft\-deleted archives.
66+
.sp
67+
\fBborg compact\fP might also delete data from archives that were \(dqlost\(dq due to
68+
archives directory corruption. Such archives could potentially be restored with
69+
\fBborg check \-\-find\-lost\-archives [\-\-repair]\fP, which is slow. You therefore
70+
might not want to do that unless there are signs of lost archives (e.g. when
71+
seeing fatal errors when creating backups or when archives are missing in
72+
\fBborg repo\-list\fP).
4673
.SH OPTIONS
4774
.sp
4875
See \fIborg\-common(1)\fP for common options of Borg commands.

docs/man/borg-compression.1

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
2727
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
2828
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
2929
..
30-
.TH "BORG-COMPRESSION" 1 "2024-10-31" "" "borg backup tool"
30+
.TH "BORG-COMPRESSION" 1 "2024-11-16" "" "borg backup tool"
3131
.SH NAME
3232
borg-compression \- Details regarding compression
3333
.SH DESCRIPTION
@@ -77,7 +77,8 @@ Use a built\-in heuristic to decide per chunk whether to compress or not.
7777
The heuristic tries with lz4 whether the data is compressible.
7878
For incompressible data, it will not use compression (uses \(dqnone\(dq).
7979
For compressible data, it uses the given C[,L] compression \- with C[,L]
80-
being any valid compression specifier.
80+
being any valid compression specifier. This can be helpful for media files
81+
which often cannot be compressed much more.
8182
.TP
8283
.B obfuscate,SPEC,C[,L]
8384
Use compressed\-size obfuscation to make fingerprinting attacks based on

docs/man/borg-create.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
2727
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
2828
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
2929
..
30-
.TH "BORG-CREATE" 1 "2024-10-31" "" "borg backup tool"
30+
.TH "BORG-CREATE" 1 "2024-11-16" "" "borg backup tool"
3131
.SH NAME
3232
borg-create \- Create new archive
3333
.SH SYNOPSIS

docs/man/borg-delete.1

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,25 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
2727
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
2828
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
2929
..
30-
.TH "BORG-DELETE" 1 "2024-10-31" "" "borg backup tool"
30+
.TH "BORG-DELETE" 1 "2024-11-16" "" "borg backup tool"
3131
.SH NAME
3232
borg-delete \- Delete archives
3333
.SH SYNOPSIS
3434
.sp
3535
borg [common options] delete [options] [NAME]
3636
.SH DESCRIPTION
3737
.sp
38-
This command deletes archives from the repository.
38+
This command soft\-deletes archives from the repository.
3939
.sp
40-
Important: When deleting archives, repository disk space is \fBnot\fP freed until
40+
Important:
41+
.INDENT 0.0
42+
.IP \(bu 2
43+
The delete command will only mark archives for deletion (\(dqsoft\-deletion\(dq),
44+
repository disk space is \fBnot\fP freed until you run \fBborg compact\fP\&.
45+
.IP \(bu 2
46+
You can use \fBborg undelete\fP to undelete archives, but only until
4147
you run \fBborg compact\fP\&.
48+
.UNINDENT
4249
.sp
4350
When in doubt, use \fB\-\-dry\-run \-\-list\fP to see what would be deleted.
4451
.sp

docs/man/borg-diff.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
2727
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
2828
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
2929
..
30-
.TH "BORG-DIFF" 1 "2024-10-31" "" "borg backup tool"
30+
.TH "BORG-DIFF" 1 "2024-11-16" "" "borg backup tool"
3131
.SH NAME
3232
borg-diff \- Diff contents of two archives
3333
.SH SYNOPSIS

docs/man/borg-export-tar.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
2727
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
2828
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
2929
..
30-
.TH "BORG-EXPORT-TAR" 1 "2024-10-31" "" "borg backup tool"
30+
.TH "BORG-EXPORT-TAR" 1 "2024-11-16" "" "borg backup tool"
3131
.SH NAME
3232
borg-export-tar \- Export archive contents as a tarball
3333
.SH SYNOPSIS

docs/man/borg-extract.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
2727
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
2828
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
2929
..
30-
.TH "BORG-EXTRACT" 1 "2024-10-31" "" "borg backup tool"
30+
.TH "BORG-EXTRACT" 1 "2024-11-16" "" "borg backup tool"
3131
.SH NAME
3232
borg-extract \- Extract archive contents
3333
.SH SYNOPSIS

docs/man/borg-import-tar.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
2727
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
2828
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
2929
..
30-
.TH "BORG-IMPORT-TAR" 1 "2024-10-31" "" "borg backup tool"
30+
.TH "BORG-IMPORT-TAR" 1 "2024-11-16" "" "borg backup tool"
3131
.SH NAME
3232
borg-import-tar \- Create a backup archive from a tarball
3333
.SH SYNOPSIS

docs/man/borg-info.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
2727
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
2828
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
2929
..
30-
.TH "BORG-INFO" 1 "2024-10-31" "" "borg backup tool"
30+
.TH "BORG-INFO" 1 "2024-11-16" "" "borg backup tool"
3131
.SH NAME
3232
borg-info \- Show archive details such as disk space used
3333
.SH SYNOPSIS

docs/man/borg-key-change-location.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
2727
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
2828
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
2929
..
30-
.TH "BORG-KEY-CHANGE-LOCATION" 1 "2024-10-31" "" "borg backup tool"
30+
.TH "BORG-KEY-CHANGE-LOCATION" 1 "2024-11-16" "" "borg backup tool"
3131
.SH NAME
3232
borg-key-change-location \- Change repository key location
3333
.SH SYNOPSIS

docs/man/borg-key-change-passphrase.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
2727
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
2828
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
2929
..
30-
.TH "BORG-KEY-CHANGE-PASSPHRASE" 1 "2024-10-31" "" "borg backup tool"
30+
.TH "BORG-KEY-CHANGE-PASSPHRASE" 1 "2024-11-16" "" "borg backup tool"
3131
.SH NAME
3232
borg-key-change-passphrase \- Change repository key file passphrase
3333
.SH SYNOPSIS

docs/man/borg-key-export.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
2727
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
2828
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
2929
..
30-
.TH "BORG-KEY-EXPORT" 1 "2024-10-31" "" "borg backup tool"
30+
.TH "BORG-KEY-EXPORT" 1 "2024-11-16" "" "borg backup tool"
3131
.SH NAME
3232
borg-key-export \- Export the repository key for backup
3333
.SH SYNOPSIS

docs/man/borg-key-import.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
2727
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
2828
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
2929
..
30-
.TH "BORG-KEY-IMPORT" 1 "2024-10-31" "" "borg backup tool"
30+
.TH "BORG-KEY-IMPORT" 1 "2024-11-16" "" "borg backup tool"
3131
.SH NAME
3232
borg-key-import \- Import the repository key from backup
3333
.SH SYNOPSIS

docs/man/borg-key.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
2727
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
2828
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
2929
..
30-
.TH "BORG-KEY" 1 "2024-10-31" "" "borg backup tool"
30+
.TH "BORG-KEY" 1 "2024-11-16" "" "borg backup tool"
3131
.SH NAME
3232
borg-key \- Manage a keyfile or repokey of a repository
3333
.SH SYNOPSIS

docs/man/borg-list.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
2727
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
2828
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
2929
..
30-
.TH "BORG-LIST" 1 "2024-10-31" "" "borg backup tool"
30+
.TH "BORG-LIST" 1 "2024-11-16" "" "borg backup tool"
3131
.SH NAME
3232
borg-list \- List archive contents
3333
.SH SYNOPSIS

docs/man/borg-match-archives.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
2727
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
2828
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
2929
..
30-
.TH "BORG-MATCH-ARCHIVES" 1 "2024-10-31" "" "borg backup tool"
30+
.TH "BORG-MATCH-ARCHIVES" 1 "2024-11-16" "" "borg backup tool"
3131
.SH NAME
3232
borg-match-archives \- Details regarding match-archives
3333
.SH DESCRIPTION

docs/man/borg-mount.1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
2727
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
2828
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
2929
..
30-
.TH "BORG-MOUNT" 1 "2024-10-31" "" "borg backup tool"
30+
.TH "BORG-MOUNT" 1 "2024-11-16" "" "borg backup tool"
3131
.SH NAME
3232
borg-mount \- Mount archive or an entire repository as a FUSE filesystem
3333
.SH SYNOPSIS
@@ -109,8 +109,8 @@ When the daemonized process receives a signal or crashes, it does not unmount.
109109
Unmounting in these cases could cause an active rsync or similar process
110110
to delete data unintentionally.
111111
.sp
112-
When running in the foreground ^C/SIGINT unmounts cleanly, but other
113-
signals or crashes do not.
112+
When running in the foreground, ^C/SIGINT cleanly unmounts the filesystem,
113+
but other signals or crashes do not.
114114
.SH OPTIONS
115115
.sp
116116
See \fIborg\-common(1)\fP for common options of Borg commands.

docs/man/borg-patterns.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
2727
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
2828
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
2929
..
30-
.TH "BORG-PATTERNS" 1 "2024-10-31" "" "borg backup tool"
30+
.TH "BORG-PATTERNS" 1 "2024-11-16" "" "borg backup tool"
3131
.SH NAME
3232
borg-patterns \- Details regarding patterns
3333
.SH DESCRIPTION

docs/man/borg-placeholders.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
2727
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
2828
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
2929
..
30-
.TH "BORG-PLACEHOLDERS" 1 "2024-10-31" "" "borg backup tool"
30+
.TH "BORG-PLACEHOLDERS" 1 "2024-11-16" "" "borg backup tool"
3131
.SH NAME
3232
borg-placeholders \- Details regarding placeholders
3333
.SH DESCRIPTION

0 commit comments

Comments
 (0)