1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-22 15:57:15 +00:00

Documentation update

This commit is contained in:
Jonas Borgström 2013-10-03 21:00:54 +02:00
parent baaeb7e060
commit 530dfd1558
2 changed files with 7 additions and 7 deletions

View file

@ -33,7 +33,7 @@ Examples
$ attic init user@hostname:mybackuprepo.attic
# Encrypted remote backup repository
$ attic init --passphrase user@hostname:mybackuprepo.attic
$ attic init --encryption=passphrase user@hostname:mybackuprepo.attic
.. include:: usage/create.rst.inc

View file

@ -5,18 +5,18 @@ attic init
::
usage: attic init [-h] [-v] [--key-file] [--passphrase] REPOSITORY
usage: attic init [-h] [-v] [-e {none,passphrase,keyfile}] REPOSITORY
Initialize an empty repository
positional arguments:
REPOSITORY repository to create
REPOSITORY repository to create
optional arguments:
-h, --help show this help message and exit
-v, --verbose verbose output
--key-file enable key file based encryption
--passphrase enable passphrase based encryption
-h, --help show this help message and exit
-v, --verbose verbose output
-e {none,passphrase,keyfile}, --encryption {none,passphrase,keyfile}
select encryption method
Description
~~~~~~~~~~~