From 391b45645975c00c53c4ca65fc3dfe1b1b14728e Mon Sep 17 00:00:00 2001 From: Coin de Gamma Date: Fri, 27 Sep 2024 06:33:10 +0000 Subject: [PATCH] README++ --- README.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 561c103..c047057 100644 --- a/README.md +++ b/README.md @@ -23,13 +23,17 @@ mps init ```bash cd storage git init -... # other git initialization process +git checkout -b main +git add db.mps +git commit -m "init mps" +git remote add origin +git push -u origin main ``` -### Intilization with exisitng storage-db repo +### Intilization with exisitng storage db repo 1. Create empty repository for storing your passwords on gitlab or somewhere you prefer -2. Clone to your home folder `~/.mps/storage`: `git clone storage` +2. Clone to your home folder `/storage`: `git clone storage` #### Exporting `MPS_HOME` You can export variable `$MPS_HOME` to init storage for example in your home directory: @@ -41,6 +45,6 @@ now `mps` will try to get storage from `$MPS_HOME/storage` #### Add your mps build to PATH in your ~/.zshenv ``` -export PATH=$PATH:"/target/release" +export PATH=$PATH:"/target/release" ```