will need gpg encryption for s3

This commit is contained in:
Joey Hess 2011-03-28 08:40:05 -04:00
parent c532be4c5d
commit 3bdc5eb290
3 changed files with 9 additions and 2 deletions

View file

@ -132,7 +132,7 @@ Many git-annex commands will stage changes for later `git commit` by you.
by uuid. To change the description of the current repository, use by uuid. To change the description of the current repository, use
"." "."
* s3bucket name description [datacenter host port] * s3bucket name description [datacenter host port] [--key=gpgkey]
Creates a bucket in Amazon S3. The bucket's name can be used Creates a bucket in Amazon S3. The bucket's name can be used
to configure git remote using the bucket. to configure git remote using the bucket.
@ -142,6 +142,10 @@ Many git-annex commands will stage changes for later `git commit` by you.
To use a different, S3-compatable service, specify a host and port. To use a different, S3-compatable service, specify a host and port.
By default, data (including filenames) is encrypted using gpg.
To use a key other than the default gpg key, specify it with
the --key option. To disable encryption, specify "none".
* fsck [path ...] * fsck [path ...]
With no parameters, this command checks the whole annex for consistency, With no parameters, this command checks the whole annex for consistency,

View file

@ -9,4 +9,5 @@ They cannot be used by other git commands though.
## Amazon S3 ## Amazon S3
Stores file contents in a bucket in Amazon S3 or a similar service. Stores file contents in a bucket in Amazon S3 or a similar service.
Content is stored encrypted by gpg.
See [[walkthrough/using_Amazon_S3]] for examples. See [[walkthrough/using_Amazon_S3]] for examples.

View file

@ -24,4 +24,6 @@ Now the remote can be used like any other remote.
move video/hackity_hack_and_kaxxt.mov (to mys3...) ok move video/hackity_hack_and_kaxxt.mov (to mys3...) ok
An Amazon S3 remote works just like a ssh remote, except it does not have An Amazon S3 remote works just like a ssh remote, except it does not have
a git repository at the other end, and it costs you money. :) a git repository at the other end, and it costs you money. :) In particular,
all data is stored encrypted with gpg, so neither Amazon nor anyone in
between can see it.