Added basic instructions on setting up password store

This commit is contained in:
David Thurstenson 2019-08-18 22:46:02 -05:00
parent 0983ada81d
commit 05e5735267
2 changed files with 27 additions and 0 deletions

26
Password-Store setup.wiki Normal file
View File

@ -0,0 +1,26 @@
=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
{{{class='prettyprint'
pass init <keyid>
}}}
4. Initialize the git repo inside the password store
{{{class='prettyprint'
pass git init
}}}
5. Set remote origin
{{{class='prettyprint'
pass git remote add origin user@site.com:pass.git
}}}
6. Fetch origin
{{{class='prettyprint'
pass git fetch origin
}}}
7. Reset hard to origin/master (overwriting anything that existed in the password store thus far)
{{{class='prettyprint'
pass git reset --hard origin/master
}}}

View File

@ -18,6 +18,7 @@ Half brain dump, half documentation practice.
* [[Pkglists]]
* [[SSH]]
* [[Keyboard Mapping]]
* [[Password-Store setup]]
===Misc.===