tlwiki/content/reference/password-store-setup.md

697 B

Password Store Setup

This is a quick reference for setting up pass on a new filesystem.

  1. Install pass via the most official means possible
  2. Import secret key to gpg keyring
  3. Initialize the password store with the key ID
pass init <keyid>
  1. Initialize the git repo inside the password store
pass git init
  1. Set remote origin
pass git remote add origin user@site.com:pass.git
  1. Fetch origin
pass git fetch origin
  1. Reset hard to origin/master (overwriting anything that existed in the password store thus far)
pass git reset --hard origin/master