2011-04-08 18:56:57 +00:00
|
|
|
This special remote type stores file contents in a
|
2013-01-22 01:19:10 +00:00
|
|
|
[bup](http://github.com/bup/bup) repository. By using git-annex
|
2011-04-08 18:56:57 +00:00
|
|
|
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.
|
|
|
|
|
2011-04-17 15:08:11 +00:00
|
|
|
This is particularly well suited to collaboration on projects involving
|
|
|
|
large files, since both the git-annex and bup repositories can be
|
|
|
|
accessed like any other git repository.
|
|
|
|
|
2011-04-08 18:56:57 +00:00
|
|
|
See [[walkthrough/using_bup]] for usage examples.
|
|
|
|
|
2011-04-08 20:51:49 +00:00
|
|
|
Each individual key is stored in a bup remote using `bup split`, with
|
|
|
|
a git branch named the same as the key name. Content is retrieved from
|
|
|
|
bup using `bup join`. All other bup operations are up to you -- consider
|
|
|
|
running `bup fsck --generate` in a cron job to generate recovery blocks,
|
|
|
|
for example; or clone bup's git repository to further back it up.
|
|
|
|
|
2011-04-08 18:56:57 +00:00
|
|
|
## configuration
|
|
|
|
|
|
|
|
These parameters can be passed to `git annex initremote` to configure bup:
|
|
|
|
|
2011-04-16 23:30:31 +00:00
|
|
|
* `encryption` - Required. Either "none" to disable encryption of content
|
|
|
|
stored in bup (ssh will still be used to transport it securely),
|
2011-04-08 18:56:57 +00:00
|
|
|
or a value that can be looked up (using gpg -k) to find a gpg encryption
|
2012-11-19 21:32:58 +00:00
|
|
|
key that will be given access to the remote, or "shared" which allows
|
|
|
|
every clone of the repository to access the encrypted data (use with caution).
|
|
|
|
|
|
|
|
Note that additional gpg keys can be given access to a remote by
|
2013-04-26 22:22:44 +00:00
|
|
|
running enableremote with the new key id. See [[encryption]].
|
2011-04-08 18:56:57 +00:00
|
|
|
|
2011-04-09 16:41:17 +00:00
|
|
|
* `buprepo` - Required. This is passed to `bup` as the `--remote`
|
2011-04-09 00:44:52 +00:00
|
|
|
to use to store data. To create the repository,`bup init` will be run.
|
2011-04-09 16:41:17 +00:00
|
|
|
Example: "buprepo=example.com:/big/mybup" or "buprepo=/big/mybup"
|
|
|
|
(To use the default `~/.bup` repository on the local host, specify "buprepo=")
|
2011-04-08 18:56:57 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
2011-04-09 18:40:14 +00:00
|
|
|
## notes
|
|
|
|
|
|
|
|
[[git-annex-shell]] does not support bup, due to the wacky way that bup
|
|
|
|
starts its server. So, to use bup, you need full shell access to the server.
|