aboutsummaryrefslogtreecommitdiff
path: root/doc/special_remotes/bup.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-04-08 14:56:57 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-04-08 14:56:57 -0400
commitf3cf20d22a5c27b83138c4ee062edb7532fecbb3 (patch)
tree39265aff7a0aab93bc478ac0f901c2e88134be98 /doc/special_remotes/bup.mdwn
parenta77c34d2b4795a5d41f82a78e999ce33f43d8862 (diff)
document bup special remotes
Diffstat (limited to 'doc/special_remotes/bup.mdwn')
-rw-r--r--doc/special_remotes/bup.mdwn34
1 files changed, 34 insertions, 0 deletions
diff --git a/doc/special_remotes/bup.mdwn b/doc/special_remotes/bup.mdwn
new file mode 100644
index 000000000..09eadd008
--- /dev/null
+++ b/doc/special_remotes/bup.mdwn
@@ -0,0 +1,34 @@
+This special remote type stores file contents in a
+[bup](http://github.com/apenwarr/bup) repository. By using git-annex
+in the front-end, and bup as a remote, you get an easy git-style
+interface to large files, and easy backups of the file contents using git.
+
+See [[walkthrough/using_bup]] for usage examples.
+
+## configuration
+
+These parameters can be passed to `git annex initremote` to configure bup:
+
+* `encryption` - Required. Either "none" to disable encryption,
+ or a value that can be looked up (using gpg -k) to find a gpg encryption
+ key that will be given access to the remote. Note that additional gpg
+ keys can be given access to a remote by rerunning initremote with
+ the new key id.
+
+* `remote` - Required. This is passed to `bup` as the `--remote`
+ to use to store data. `bup init` will be run to create the
+ repository. Example: "remote=example.com:/big/mybup"
+
+Options to pass to `bup split` when sending content to bup can also
+be specified, by using `git config annex.bup-split-options`. This
+can be used to, for example, limit its bandwidth.
+
+## data security
+
+When encryption=none, there is **no** protection against your data being read
+by anyone who can access the bup remote. However, bup does transfer data
+using ssh, and if you trust the security of the remote, that's fine.
+
+** Encryption is not yet supported. **
+
+See [[design/encryption]].