Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,25 @@ Before adding a new SSH key to the ssh-agent to manage your keys, you should hav
**Note:** If you chose not to add a passphrase to your key, you should omit the `UseKeychain` line.

{% endnote %}

{% mac %}
{% note %}

**Note:** If you see an error like this

```
/Users/USER/.ssh/config: line 16: Bad configuration option: usekeychain
```

add an additional config line to your `Host *` section:

```
Host *
IgnoreUnknown UseKeychain
```

{% endnote %}
{% endmac %}

3. Add your SSH private key to the ssh-agent and store your passphrase in the keychain. {% data reusables.ssh.add-ssh-key-to-ssh-agent %}
```shell
Expand Down