We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6efde4f commit 5424f95Copy full SHA for 5424f95
pages/getting-started/manage-git-repositories/sharing-git-repositories.md
@@ -45,3 +45,20 @@ plural deploy
45
git add . && git commit -m "set up encryption"
46
git push
47
```
48
+
49
+### Decrypt the repository
50
51
+There are two ways the person you shared encryption can decrypt the repository. The simplest is to use the `plural clone` command:
52
53
+```shell
54
+plural clone git@github.com:your/repository.git
55
+```
56
57
+This will both run a standard git clone and then the following commands:
58
59
60
+plural crypto init
61
+plural crypto unlock
62
63
64
+If you chose to run a standard `git clone``, the above commands would still be required.
0 commit comments