From a45a8da8a039d853e2de3a9f3d4b40728d7f3eca Mon Sep 17 00:00:00 2001 From: Pierre DEMAGNY Date: Sun, 4 Mar 2018 22:21:50 +0100 Subject: [PATCH 1/2] Update pass.md --- pass.md | 26 ++++++++++++++++++++------ 1 file changed, 20 insertions(+), 6 deletions(-) diff --git a/pass.md b/pass.md index 853b3128a..a465ffb7d 100644 --- a/pass.md +++ b/pass.md @@ -6,12 +6,23 @@ category: CLI Reference --------- -{: .-three-column} -### Store and retrieve +### Create - $ pass insert twitter.com/rsc - $ pass twitter.com/rsc + $ pass init [-p] + $ pass git init + $ pass git remote add origin + $ pass git push -u --all + +### Store + + $ pass insert [-m] twitter.com/rsc + $ pass generate [-n] twitter.com/rsc length + +### Retreive + + $ pass ls twitter.com/ + $ pass show twitter.com/rsc ### Search @@ -25,8 +36,11 @@ Reference $ pass edit twitter.com/rsc +### Synchronize + + $ pass git push + $ pass git pull + ## References -{: .-one-column} * -{: .-also-see} From 1baa5c5618817c2fe8e671f8ad66ebcdc6672198 Mon Sep 17 00:00:00 2001 From: "Rico Sta. Cruz" Date: Tue, 6 Mar 2018 15:32:05 +0800 Subject: [PATCH 2/2] pass: update formatting --- pass.md | 44 +++++++++++++++++++++++++++++--------------- 1 file changed, 29 insertions(+), 15 deletions(-) diff --git a/pass.md b/pass.md index a465ffb7d..2ac082bbb 100644 --- a/pass.md +++ b/pass.md @@ -9,37 +9,51 @@ Reference ### Create - $ pass init [-p] - $ pass git init - $ pass git remote add origin - $ pass git push -u --all +``` bash +$ pass init [-p] +$ pass git init +$ pass git remote add origin +$ pass git push -u --all +``` ### Store - $ pass insert [-m] twitter.com/rsc - $ pass generate [-n] twitter.com/rsc length +``` bash +$ pass insert [-m] twitter.com/rsc +$ pass generate [-n] twitter.com/rsc length +``` ### Retreive - $ pass ls twitter.com/ - $ pass show twitter.com/rsc +``` bash +$ pass ls twitter.com/ +$ pass show twitter.com/rsc +``` ### Search - $ pass find twitter.com +``` bash +$ pass find twitter.com +``` ### Management - $ pass mv twitter.com twitter.com/rsc - $ pass rm [-rf] twitter.com - $ pass cp twitter.com/rsc twitter.com/ricosc +``` bash +$ pass mv twitter.com twitter.com/rsc +$ 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 +``` +$ pass git push +$ pass git pull +``` ## References