2013-07-31 18:51:01 +00:00
|
|
|
.. include:: global.rst.inc
|
2016-07-11 21:16:53 +00:00
|
|
|
.. highlight:: none
|
2013-07-31 18:51:01 +00:00
|
|
|
.. _detailed_usage:
|
|
|
|
|
2013-08-04 19:23:12 +00:00
|
|
|
Usage
|
|
|
|
=====
|
2013-07-31 18:51:01 +00:00
|
|
|
|
2017-06-06 22:06:36 +00:00
|
|
|
.. raw:: html
|
|
|
|
Redirecting...
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
// Fixes old links which were just anchors
|
|
|
|
var hash = window.location.hash.substring(1);
|
|
|
|
|
|
|
|
// usage.html is empty, no content. Purely serves to implement a "correct" toctree
|
|
|
|
// due to rST/Sphinx limitations. Refer to https://github.com/sphinx-doc/sphinx/pull/3622
|
|
|
|
|
|
|
|
// Redirect to general docs
|
|
|
|
if(hash == "") {
|
|
|
|
window.location.pathname = window.location.pathname.replace("usage.html", "usage/general.html");
|
|
|
|
}
|
|
|
|
// Fixup anchored links from when usage.html contained all the commands
|
|
|
|
else if(hash.startsWith("borg-key") || hash == "borg-change-passphrase") {
|
|
|
|
window.location.hash = "";
|
|
|
|
window.location.pathname = window.location.pathname.replace("usage.html", "usage/key.html");
|
|
|
|
}
|
|
|
|
else if(hash.startsWith("borg-")) {
|
|
|
|
window.location.hash = "";
|
|
|
|
window.location.pathname = window.location.pathname.replace("usage.html", "usage/") + hash.substr(5) + ".html";
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
.. toctree::
|
|
|
|
usage/general
|
|
|
|
|
|
|
|
usage/init
|
|
|
|
usage/create
|
|
|
|
usage/extract
|
|
|
|
usage/check
|
|
|
|
usage/rename
|
|
|
|
usage/list
|
|
|
|
usage/diff
|
|
|
|
usage/delete
|
|
|
|
usage/prune
|
|
|
|
usage/info
|
|
|
|
usage/mount
|
|
|
|
usage/key
|
|
|
|
usage/upgrade
|
|
|
|
usage/recreate
|
|
|
|
usage/tar
|
|
|
|
usage/serve
|
2017-12-09 12:41:03 +00:00
|
|
|
usage/config
|
2017-06-06 22:06:36 +00:00
|
|
|
usage/lock
|
2017-06-06 22:42:26 +00:00
|
|
|
usage/benchmark
|
2017-06-06 22:06:36 +00:00
|
|
|
|
|
|
|
usage/help
|
|
|
|
usage/debug
|
|
|
|
usage/notes
|