You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-9Lines changed: 13 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -141,20 +141,24 @@ This will show the raw content as stored in the repository. So even if `cat my-s
141
141
After you freshly clone a repository which contains files which have been encrypted by `git-conceal`, you need to provide the symmetric key that your coworkers would have shared with you to decrypt it:
142
142
143
143
```bash
144
-
# Option 1: Provide the key via an environment variable (base64 encoded). Recommended on CI.
145
-
export GIT_SECRETS_KEY="YOUR_BASE64_KEY"
146
-
git-conceal unlock env:GIT_SECRETS_KEY
144
+
# Option 1: Provide the key via an environment variable (base64 encoded).
145
+
# Recommended on CI, where secret values like the key are usually exposed to jobs as env vars.
146
+
$ git-conceal unlock env:GIT_CONCEAL_SECRET_KEY
147
147
148
-
# Option 2: Provide the Base64-encoded key as command line argument. (Only use locally, as on CI this could leak the key in logs).
0 commit comments