Added basic instructions on setting up password store
This commit is contained in:
parent
0983ada81d
commit
05e5735267
|
@ -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
|
||||
}}}
|
|
@ -18,6 +18,7 @@ Half brain dump, half documentation practice.
|
|||
* [[Pkglists]]
|
||||
* [[SSH]]
|
||||
* [[Keyboard Mapping]]
|
||||
* [[Password-Store setup]]
|
||||
|
||||
===Misc.===
|
||||
|
||||
|
|
Loading…
Reference in New Issue