697 B
697 B
Password Store Setup
This is a quick reference for setting up pass
on a new filesystem.
- Install
pass
via the most official means possible - Import secret key to gpg keyring
- Initialize the password store with the key ID
pass init <keyid>
- Initialize the git repo inside the password store
pass git init
- Set remote origin
pass git remote add origin user@site.com:pass.git
- Fetch origin
pass git fetch origin
- Reset hard to origin/master (overwriting anything that existed in the password store thus far)
pass git reset --hard origin/master