1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-03-09 13:53:09 +00:00

Merge pull request #8259 from ThomasWaldmann/borg-mount-docs-1.4

docs: add examples using :: positional argument, fixes #8255
This commit is contained in:
TW 2024-06-30 17:46:04 +02:00 committed by GitHub
commit de91c79f64
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -41,6 +41,13 @@ Examples
$ borg mount /path/to/repo /tmp/mymountpoint only/that/path
$ borg mount --exclude '...' /path/to/repo /tmp/mymountpoint
# When using BORG_REPO env var, use :: as positional argument:
export BORG_REPO=/path/to/repo
# Mount the whole repo:
borg mount :: /tmp/mymountpoint
# Mount some specific archive:
borg mount ::root-2016-02-15 /tmp/mymountpoint
borgfs
++++++