We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 431b4cf commit fd31b25Copy full SHA for fd31b25
1-getting-started/mac-setup.md
@@ -121,7 +121,13 @@ bash
121
gpg --output ssh_keys.zip --decrypt ssh_keys.zip.gpg
122
```
123
124
-This will output the ssh_keys.zip file containing your unencrypted SSH keys!
+This will output the ssh_keys.zip file containing your unencrypted SSH keys.
125
126
You only need to export and import the specific GPG key used to encrypt the file. Not the entire GPG Suite setup.
127
The keys can then be decrypted on a new device as long as that GPG key is installed.
128
+
129
+TO IMPORT THE KEYS TO YOUR NEW MACHINE -
130
+eval "$(ssh-agent -s)"
131
+ #### (example reply: Agent pid 59566, lets you know it's running)
132
+ssh-add --apple-use-keychain ~/.ssh/id_ed25519
133
+ #### (or id_rsa, or whatever you made)
0 commit comments