From 0eaec603846968af10bb5cc9ef466af58c325907 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sat, 25 Nov 2017 20:18:59 +0100 Subject: [PATCH] docs: give examples for borg mount exclusion options --- docs/usage/mount.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/usage/mount.rst b/docs/usage/mount.rst index 46c7d554c..f170fb317 100644 --- a/docs/usage/mount.rst +++ b/docs/usage/mount.rst @@ -36,6 +36,12 @@ Examples # which does not support lazy processing of archives. $ borg mount -o versions --glob-archives '*-my-home' --last 10 /path/to/repo /tmp/mymountpoint + # Exclusion options are supported. + # These can speed up mounting and lower memory needs significantly. + $ borg mount /path/to/repo /tmp/mymountpoint only/that/path + $ borg mount --exclude '...' /path/to/repo /tmp/mymountpoint + + borgfs ++++++