1 | | Documentation for the Keyringer repo. |
| 1 | Documentation for the Keyringer repo, see the install notes at ticket:79#comment:5 |
| 2 | |
| 3 | == Install Keyringer == |
| 4 | |
| 5 | {{{ |
| 6 | apt-get install keyringer |
| 7 | }}} |
| 8 | |
| 9 | == Check out the repo == |
| 10 | |
| 11 | Once you have a bitbucket account and have been added to the crin project: |
| 12 | |
| 13 | {{{ |
| 14 | cd ~ |
| 15 | git clone git@bitbucket.org:crin/crin-keys.git |
| 16 | }}} |
| 17 | |
| 18 | == Decrypt a file == |
| 19 | |
| 20 | {{{ |
| 21 | cd ~/crin-keys/keys |
| 22 | gpg -d test.asc |
| 23 | }}} |
| 24 | |
| 25 | == Edit a file == |
| 26 | |
| 27 | {{{ |
| 28 | keyringer crin-keys edit test |
| 29 | cd ~/crin-keys/keys |
| 30 | git commit -a |
| 31 | git push |
| 32 | }}} |
| 33 | |
| 34 | == Create a file == |
| 35 | |
| 36 | {{{ |
| 37 | keyringer crin-keys encrypt example.org |
| 38 | |
| 39 | stuff |
| 40 | |
| 41 | Ctrl-D |
| 42 | }}} |
| 43 | |
| 44 | Then |
| 45 | |
| 46 | {{{ |
| 47 | cd ~/crin-keys |
| 48 | git add keys/example.org |
| 49 | git commit -a |
| 50 | git push |
| 51 | }}} |