Merge branch 'pr/435'
* pr/435: pass: update formatting Update pass.md
This commit is contained in:
commit
7f8995cd8b
50
pass.md
50
pass.md
|
@ -6,27 +6,55 @@ category: CLI
|
||||||
|
|
||||||
Reference
|
Reference
|
||||||
---------
|
---------
|
||||||
{: .-three-column}
|
|
||||||
|
|
||||||
### Store and retrieve
|
### Create
|
||||||
|
|
||||||
$ pass insert twitter.com/rsc
|
``` bash
|
||||||
$ pass twitter.com/rsc
|
$ pass init [-p] <gpg-id>
|
||||||
|
$ pass git init
|
||||||
|
$ pass git remote add origin <your.git:repository>
|
||||||
|
$ pass git push -u --all
|
||||||
|
```
|
||||||
|
|
||||||
|
### Store
|
||||||
|
|
||||||
|
``` bash
|
||||||
|
$ pass insert [-m] twitter.com/rsc
|
||||||
|
$ pass generate [-n] twitter.com/rsc length
|
||||||
|
```
|
||||||
|
|
||||||
|
### Retreive
|
||||||
|
|
||||||
|
``` bash
|
||||||
|
$ pass ls twitter.com/
|
||||||
|
$ pass show twitter.com/rsc
|
||||||
|
```
|
||||||
|
|
||||||
### Search
|
### Search
|
||||||
|
|
||||||
$ pass find twitter.com
|
``` bash
|
||||||
|
$ pass find twitter.com
|
||||||
|
```
|
||||||
|
|
||||||
### Management
|
### Management
|
||||||
|
|
||||||
$ pass mv twitter.com twitter.com/rsc
|
``` bash
|
||||||
$ pass rm [-rf] twitter.com
|
$ pass mv twitter.com twitter.com/rsc
|
||||||
$ pass cp twitter.com/rsc twitter.com/ricosc
|
$ pass rm [-rf] twitter.com
|
||||||
|
$ pass cp twitter.com/rsc twitter.com/ricosc
|
||||||
|
```
|
||||||
|
|
||||||
$ pass edit twitter.com/rsc
|
``` bash
|
||||||
|
$ pass edit twitter.com/rsc
|
||||||
|
```
|
||||||
|
|
||||||
|
### Synchronize
|
||||||
|
|
||||||
|
```
|
||||||
|
$ pass git push
|
||||||
|
$ pass git pull
|
||||||
|
```
|
||||||
|
|
||||||
## References
|
## References
|
||||||
{: .-one-column}
|
|
||||||
|
|
||||||
* <http://passwordstore.org>
|
* <http://passwordstore.org>
|
||||||
{: .-also-see}
|
|
||||||
|
|
Loading…
Reference in New Issue