From 5424f952bb5e28312ae01f69c611f9c222eff41d Mon Sep 17 00:00:00 2001 From: michaeljguarino Date: Wed, 4 Oct 2023 16:36:08 -0400 Subject: [PATCH] fix sharing git repo docs (#239) --- .../sharing-git-repositories.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/pages/getting-started/manage-git-repositories/sharing-git-repositories.md b/pages/getting-started/manage-git-repositories/sharing-git-repositories.md index d00c89c3..5bde4ed8 100644 --- a/pages/getting-started/manage-git-repositories/sharing-git-repositories.md +++ b/pages/getting-started/manage-git-repositories/sharing-git-repositories.md @@ -45,3 +45,20 @@ plural deploy git add . && git commit -m "set up encryption" git push ``` + +### Decrypt the repository + +There are two ways the person you shared encryption can decrypt the repository. The simplest is to use the `plural clone` command: + +```shell +plural clone git@github.com:your/repository.git +``` + +This will both run a standard git clone and then the following commands: + +```shell +plural crypto init +plural crypto unlock +``` + +If you chose to run a standard `git clone``, the above commands would still be required.