1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-02-21 05:37:23 +00:00

Merge pull request #1889 from enkore/f/109docfixes

1.0.9rc1 doc fixes
This commit is contained in:
enkore 2016-11-27 20:33:36 +01:00 committed by GitHub
commit 104e9f3169
4 changed files with 5 additions and 6 deletions

View file

@ -89,9 +89,7 @@ Initialize a new backup repository and create a backup archive::
$ borg init /path/to/repo
$ borg create /path/to/repo::Saturday1 ~/Documents
Now doing another backup, just to show off the great deduplication:
.. code-block::
Now doing another backup, just to show off the great deduplication::
$ borg create -v --stats /path/to/repo::Saturday2 ~/Documents
-----------------------------------------------------------------------------

View file

@ -66,6 +66,7 @@ The best check that everything is ok is to run a dry-run extraction::
borg extract -v --dry-run REPO::ARCHIVE
.. _changelog:
Changelog
=========

View file

@ -544,7 +544,7 @@ Here's a (incomplete) list of some major changes:
* better logging, screen output, progress indication
* tested on misc. Linux systems, 32 and 64bit, FreeBSD, OpenBSD, NetBSD, Mac OS X
Please read the `ChangeLog`_ (or ``docs/changes.rst`` in the source distribution) for more
Please read the :ref:`changelog` (or ``docs/changes.rst`` in the source distribution) for more
information.
Borg is not compatible with original attic (but there is a one-way conversion).

View file

@ -42,7 +42,7 @@ Note: you may also prepend a ``file://`` to a filesystem path to get URL style.
``user@host:~other/path/to/repo`` - path relative to other's home directory
Note: giving ``user@host:/./path/to/repo`` or ``user@host:/~/path/to/repo`` or
``user@host:/~other/path/to/repo``is also supported, but not required here.
``user@host:/~other/path/to/repo`` is also supported, but not required here.
**Remote repositories with relative pathes, alternative syntax with port**:
@ -437,7 +437,7 @@ Notes
- the --exclude patterns are not like tar. In tar --exclude .bundler/gems will
exclude foo/.bundler/gems. In borg it will not, you need to use --exclude
'*/.bundler/gems' to get the same effect. See ``borg help patterns`` for
'\*/.bundler/gems' to get the same effect. See ``borg help patterns`` for
more information.