1
0
mirror of synced 2025-12-21 19:06:49 -05:00

Update docs for generating a new SSH key for windows

I was trying to add a ssh key to my github using windows 10, and i was uncapable to procceed.
And i found that the commands `$ eval $(ssh-agent -s)` don't work on windows, but  ` $ eval `ssh-agent -s` ` works fine
This commit is contained in:
William Torres
2020-12-20 22:33:14 -03:00
committed by GitHub
parent 20f68bed8e
commit 03b0f4d42f

View File

@@ -127,7 +127,7 @@ Before adding a new SSH key to the ssh-agent to manage your keys, you should hav
1. Ensure the ssh-agent is running. You can use the "Auto-launching the ssh-agent" instructions in "[Working with SSH key passphrases](/articles/working-with-ssh-key-passphrases)", or start it manually:
```shell
# start the ssh-agent in the background
$ eval $(ssh-agent -s)
$ eval `ssh-agent -s`
> Agent pid 59566
```