-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6efde4f
commit 5424f95
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 [email protected]: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. |