diff options
author | Joey Hess <joey@kitenet.net> | 2011-05-01 15:13:54 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-05-01 15:13:54 -0400 |
commit | 3c319cd844f23edeab800d37ed0256d92a88a818 (patch) | |
tree | ae43b75a38a3ebf1dd796513ed97bbc295fc29f0 /doc/walkthrough | |
parent | 2ddade8132169ea751628f72ae5b03c5921abafc (diff) |
avoid always decrypting cipher
Last change moved cipher decryption to remote setup time.
Fixed this with a bit of a hack.
Diffstat (limited to 'doc/walkthrough')
-rw-r--r-- | doc/walkthrough/using_Amazon_S3.mdwn | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/walkthrough/using_Amazon_S3.mdwn b/doc/walkthrough/using_Amazon_S3.mdwn index 63bed5d63..512ef961f 100644 --- a/doc/walkthrough/using_Amazon_S3.mdwn +++ b/doc/walkthrough/using_Amazon_S3.mdwn @@ -15,7 +15,7 @@ like "2512E3C7" Next, create the S3 remote, and describe it. # git annex initremote cloud type=S3 encryption=2512E3C7 - initremote cloud (encryption setup with gpg key C910D9222512E3C7) (checking bucket) (creating bucket in US) ok + initremote cloud (encryption setup with gpg key C910D9222512E3C7) (checking bucket) (creating bucket in US) (gpg) ok # git annex describe cloud "at Amazon's US datacenter" describe cloud ok @@ -25,12 +25,12 @@ repository use the same S3 remote is easy: # cd /media/usb/annex # git pull laptop master # git annex initremote cloud - initremote cloud (checking bucket) ok + initremote cloud (gpg) (checking bucket) ok Now the remote can be used like any other remote. # git annex copy my_cool_big_file --to cloud - copy my_cool_big_file (checking cloud...) (to cloud...) ok + copy my_cool_big_file (gpg) (checking cloud...) (to cloud...) ok # git annex move video/hackity_hack_and_kaxxt.mov --to cloud move video/hackity_hack_and_kaxxt.mov (checking cloud...) (to cloud...) ok |