Guest User

Untitled

a guest
Aug 17th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. 1. Install `pass` utility
  2. ```bash
  3. sudo pacman -S pass
  4. ```
  5.  
  6. 2. Create a GPG key using the default RSA also (if not yet created)
  7. ```bash
  8. gpg --full-gen-key
  9. ```
  10.  
  11. 3. Use the returned GPG Key Id to init the pass storage (if you already had one you cna retrieve it using `gpg --list-secret-keys`)
  12. ```bash
  13. gpg --full-gen-key
  14. ```
  15.  
  16. 4. Sync the pass storage with a remote git repository
  17. ```bash
  18. pass git init
  19. pass git remote add origin example.com:pass
  20. pass git push
  21. ```
Add Comment
Please, Sign In to add comment