|
@@ -1,3 +1,20 @@
|
|
|
+Positional Arguments and Options: Order matters
|
|
|
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
+
|
|
|
+Borg only supports taking options (``-s`` and ``--progress`` in the example)
|
|
|
+to the left or right of all positional arguments (``repo::archive`` and ``path``
|
|
|
+in the example), but not in between them:
|
|
|
+
|
|
|
+::
|
|
|
+
|
|
|
+ borg create -s --progress repo::archive path # good and preferred
|
|
|
+ borg create repo::archive path -s --progress # also works
|
|
|
+ borg create -s repo::archive path --progress # works, but ugly
|
|
|
+ borg create repo::archive -s --progress path # BAD
|
|
|
+
|
|
|
+This is due to a problem in the argparse module: http://bugs.python.org/issue15112
|
|
|
+
|
|
|
+
|
|
|
Repository URLs
|
|
|
~~~~~~~~~~~~~~~
|
|
|
|
|
@@ -373,6 +390,7 @@ Besides regular file and directory structures, Borg can preserve
|
|
|
By default the metadata to create them with mknod(2), mkfifo(2) etc. is stored.
|
|
|
* hardlinked regular files, devices, FIFOs (considering all items in the same archive)
|
|
|
* timestamps in nanosecond precision: mtime, atime, ctime
|
|
|
+* other timestamps: birthtime (on platforms supporting it)
|
|
|
* permissions:
|
|
|
|
|
|
* IDs of owning user and owning group
|